Skip to content

Commit

Permalink
fix(cordova): use proper targetSdkVersion (#4498)
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaNi committed Apr 27, 2021
1 parent 196d843 commit 7d48be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion capacitor-cordova-android-plugins/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 30
defaultConfig {
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 21
targetSdkVersion targetSdkVersion = project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 30
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 30
versionCode 1
versionName "1.0"
}
Expand Down

0 comments on commit 7d48be8

Please sign in to comment.