Skip to content

Commit

Permalink
fix: ajust to androidsdk 31
Browse files Browse the repository at this point in the history
  • Loading branch information
taoqf committed Dec 9, 2022
1 parent a78bb00 commit add7e35
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions android/build.gradle
Expand Up @@ -19,12 +19,12 @@ def safeExtGet(prop, fallback) {
}

android {
buildToolsVersion = "30.0.2"
compileSdkVersion = 30
buildToolsVersion safeExtGet('buildToolsVersion', "30.0.2")
compileSdkVersion safeExtGet('compileSdkVersion', 30)

defaultConfig {
minSdkVersion 21
targetSdkVersion 30
minSdkVersion safeExtGet('minSdkVersion', 21)
targetSdkVersion safeExtGet('targetSdkVersion', 30)
versionCode 4
versionName '1.3'
}
Expand Down

0 comments on commit add7e35

Please sign in to comment.