up target sdk to 31

Looks like that'll be required soon
This commit is contained in:
Eric House 2022-08-11 10:40:18 -07:00
parent 07d4690b95
commit 85e6fb0dbf
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@ android {
} else { } else {
minSdkVersion 14 minSdkVersion 14
} }
targetSdkVersion 30 // must match ../build.gradle targetSdkVersion 31 // must match ../build.gradle
versionCode VERSION_CODE_BASE versionCode VERSION_CODE_BASE
versionName VERSION_NAME versionName VERSION_NAME
} }

View file

@ -32,7 +32,7 @@ subprojects {
afterEvaluate {project -> afterEvaluate {project ->
if (project.hasProperty("android")) { if (project.hasProperty("android")) {
android { android {
compileSdkVersion 30 // must match app/build.gradle compileSdkVersion 31 // must match app/build.gradle
} }
} }
} }