up target sdk from 28 to 29

This commit is contained in:
Eric House 2020-08-17 12:45:55 -07:00
parent 458872c886
commit 374fd4a0b6
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@ android {
defaultConfig {
// HostApduService requires 19. But is it a problem?
minSdkVersion 14
targetSdkVersion 28 // must match ../build.gradle
targetSdkVersion 29 // must match ../build.gradle
versionCode VERSION_CODE_BASE
versionName VERSION_NAME
}

View file

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