Unverified Commit 99f72835 authored by Max Lv's avatar Max Lv Committed by GitHub

Merge pull request #2020 from shadowsocks/fix-bab

Fix bottom app bar
parents b7827d3c cc7bc5bf
...@@ -4,6 +4,7 @@ apply plugin: 'com.github.ben-manes.versions' ...@@ -4,6 +4,7 @@ apply plugin: 'com.github.ben-manes.versions'
buildscript { buildscript {
ext { ext {
androidxVersion = '1.0.1'
kotlinVersion = '1.3.10' kotlinVersion = '1.3.10'
minSdkVersion = 21 minSdkVersion = 21
sdkVersion = 28 sdkVersion = 28
...@@ -38,6 +39,9 @@ allprojects { ...@@ -38,6 +39,9 @@ allprojects {
repositories { repositories {
google() google()
jcenter() jcenter()
maven {
url 'https://raw.githubusercontent.com/madeye/maven-repository/master/'
}
} }
} }
......
...@@ -24,8 +24,8 @@ android { ...@@ -24,8 +24,8 @@ android {
} }
dependencies { dependencies {
api "androidx.core:core-ktx:1.0.1" api "androidx.core:core-ktx:$androidxVersion"
api "com.google.android.material:material:1.0.0" api "com.google.android.material:material:1.1.0-SNAPSHOT"
api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion" api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
testImplementation "junit:junit:$junitVersion" testImplementation "junit:junit:$junitVersion"
androidTestImplementation "androidx.test:runner:$androidTestVersion" androidTestImplementation "androidx.test:runner:$androidTestVersion"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment