Skip to content

Commit de0a07a

Browse files
authored
chore(android): use 'propName = value' assignment syntax in build.gradle files (#94)
1 parent 68af12c commit de0a07a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ apply plugin: 'com.android.library'
2222
apply plugin: 'kotlin-android'
2323

2424
android {
25-
namespace "com.capacitorjs.osinappbrowser"
26-
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36
25+
namespace = "com.capacitorjs.osinappbrowser"
26+
compileSdk = project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36
2727
defaultConfig {
2828
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 26
2929
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 36
@@ -38,7 +38,7 @@ android {
3838
}
3939
}
4040
lintOptions {
41-
abortOnError false
41+
abortOnError = false
4242
}
4343
compileOptions {
4444
sourceCompatibility JavaVersion.VERSION_21

0 commit comments

Comments
 (0)