build fix

This commit is contained in:
unknown
2022-01-05 13:47:53 +01:00
parent cd18cfb220
commit 506c04aea9
6 changed files with 17 additions and 11 deletions

View File

@@ -1,9 +1,9 @@
buildscript {
ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.6.10'
ext {
compileSdkVersion = 30
targetSdkVersion = 30
compileSdkVersion = 31
targetSdkVersion = 31
appCompatVersion = "1.1.0"
}
@@ -33,8 +33,8 @@ subprojects {
afterEvaluate {project ->
if (project.plugins.hasPlugin('android') || project.plugins.hasPlugin('android-library')) {
android {
compileSdkVersion 30
buildToolsVersion '30.0.3'
compileSdkVersion 31
buildToolsVersion '31.0.0'
}
}
}