android: Update syntax for three values Gradle warns about

Others seem to be fine or even get an explicit error if changed, like
targetSdkVersion.
This commit is contained in:
Tobias Brunner
2025-09-30 11:26:40 +02:00
parent 19ef347628
commit 59b74c767a
+3 -3
View File
@@ -1,11 +1,11 @@
apply plugin: 'com.android.application'
android {
namespace 'org.strongswan.android'
namespace = 'org.strongswan.android'
defaultConfig {
applicationId "org.strongswan.android"
compileSdk 36
compileSdk = 36
minSdkVersion 21
targetSdkVersion 36
@@ -19,7 +19,7 @@ android {
}
}
ndkVersion "27.3.13750724"
ndkVersion = "27.3.13750724"
externalNativeBuild {
ndkBuild {