Remove overkill

This commit is contained in:
Mygod
2019-02-08 21:18:09 +08:00
parent e7c1d71897
commit 3cfb029fd7
2 changed files with 7 additions and 17 deletions

View File

@@ -70,7 +70,6 @@ dependencies {
kapt "androidx.room:room-compiler:$roomVersion"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.browser:browser:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
implementation 'androidx.core:core-ktx:1.0.1'
implementation 'androidx.emoji:emoji:1.0.0'
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycleVersion"

View File

@@ -4,9 +4,10 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<androidx.constraintlayout.widget.ConstraintLayout
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="be.mygod.vpnhotspot.MainActivity">
<androidx.appcompat.widget.Toolbar
@@ -15,16 +16,12 @@
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
app:layout_constraintTop_toTopOf="parent"
app:title="@string/app_name"/>
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="0dp"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/navigation"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/toolbar">
android:layout_weight="1">
<FrameLayout
android:id="@+id/fragmentHolder"
@@ -35,25 +32,19 @@
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toTopOf="@+id/line"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation"/>
<View
android:id="@+id/line"
android:layout_width="0dp"
android:layout_width="match_parent"
android:layout_height="0.1px"
android:background="?android:attr/navigationBarColor"
android:elevation="9dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
tools:ignore="PxUsage"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</LinearLayout>
</layout>