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:
@@ -1,11 +1,11 @@
|
|||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace 'org.strongswan.android'
|
namespace = 'org.strongswan.android'
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "org.strongswan.android"
|
applicationId "org.strongswan.android"
|
||||||
compileSdk 36
|
compileSdk = 36
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 36
|
targetSdkVersion 36
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ndkVersion "27.3.13750724"
|
ndkVersion = "27.3.13750724"
|
||||||
|
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
ndkBuild {
|
ndkBuild {
|
||||||
|
|||||||
Reference in New Issue
Block a user