From: Tobias Brunner Date: Mon, 4 Aug 2025 13:18:02 +0000 (+0200) Subject: android: Update syntax for three values Gradle warns about X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=88496d7b7e9dfd7bd4aa0550977bb7fc1a7fe955;p=thirdparty%2Fstrongswan.git android: Update syntax for three values Gradle warns about Others seem to be fine or even get an explicit error if changed, like targetSdkVersion. --- diff --git a/src/frontends/android/app/build.gradle b/src/frontends/android/app/build.gradle index 3439d4b322..dfaf6a0d61 100644 --- a/src/frontends/android/app/build.gradle +++ b/src/frontends/android/app/build.gradle @@ -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 {