Update sdk 28 -> 29 and migrate to androidx

This commit is contained in:
Sofiya Tepikin
2020-08-01 11:47:33 +00:00
parent fd818404d4
commit 9cf542f4b7
7 changed files with 111 additions and 101 deletions
+7 -7
View File
@@ -36,20 +36,20 @@ allprojects {
}
ext {
buildToolsVersion = "28.0.3"
buildToolsVersion = "29.0.3"
minSdkVersion = 23
compileSdkVersion = 28
targetSdkVersion = 28
supportLibVersion = "28.0.0"
compileSdkVersion = 29
targetSdkVersion = 29
supportLibVersion = "29.0.0"
}
subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
compileSdkVersion 29
buildToolsVersion '29.0.3'
}
}
}
}
}