Skip to content

Commit

Permalink
fix(android): proper targetSdkVersion configuration on cordova plugins (
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile committed Jul 2, 2021
1 parent 69bbf47 commit 8119522
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 : 29
defaultConfig {
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 21
targetSdkVersion targetSdkVersion = project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 29
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 29
versionCode 1
versionName "1.0"
}
Expand Down

0 comments on commit 8119522

Please sign in to comment.