Skip to content

Commit 3912030

Browse files
authored
fix(cli): replace deprecated Gradle property name syntax (#8207)
1 parent c707252 commit 3912030

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

capacitor-cordova-android-plugins/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ buildscript {
1616
apply plugin: 'com.android.library'
1717

1818
android {
19-
namespace "capacitor.cordova.android.plugins"
20-
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36
19+
namespace = "capacitor.cordova.android.plugins"
20+
compileSdk = project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36
2121
defaultConfig {
2222
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 24
2323
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 36
2424
versionCode 1
2525
versionName "1.0"
2626
}
2727
lintOptions {
28-
abortOnError false
28+
abortOnError = false
2929
}
3030
compileOptions {
3131
sourceCompatibility JavaVersion.VERSION_21

0 commit comments

Comments
 (0)