diff --git a/examples/DemoRunner/Builds/Android/app/build.gradle b/examples/DemoRunner/Builds/Android/app/build.gradle index eda63fa9a4..7178aabcaa 100644 --- a/examples/DemoRunner/Builds/Android/app/build.gradle +++ b/examples/DemoRunner/Builds/Android/app/build.gradle @@ -3,13 +3,13 @@ apply plugin: 'com.android.application' def ndkVersionString = "28.1.13356709" android { - compileSdk 35 - ndkVersion ndkVersionString - namespace "com.rmsl.jucedemorunner" + compileSdk = 35 + ndkVersion = ndkVersionString + namespace = "com.rmsl.jucedemorunner" externalNativeBuild { cmake { path "CMakeLists.txt" - version "3.22.1" + version = "3.22.1" } } signingConfigs { @@ -38,13 +38,13 @@ android { initWith debug debuggable true jniDebuggable true - signingConfig signingConfigs.juceSigning + signingConfig = signingConfigs.juceSigning } release { initWith release debuggable false jniDebuggable false - signingConfig signingConfigs.juceSigning + signingConfig = signingConfigs.juceSigning } } diff --git a/extras/AudioPerformanceTest/Builds/Android/app/build.gradle b/extras/AudioPerformanceTest/Builds/Android/app/build.gradle index 33c34a4ea6..120dfa86aa 100644 --- a/extras/AudioPerformanceTest/Builds/Android/app/build.gradle +++ b/extras/AudioPerformanceTest/Builds/Android/app/build.gradle @@ -3,13 +3,13 @@ apply plugin: 'com.android.application' def ndkVersionString = "28.1.13356709" android { - compileSdk 35 - ndkVersion ndkVersionString - namespace "com.juce.audioperformancetest" + compileSdk = 35 + ndkVersion = ndkVersionString + namespace = "com.juce.audioperformancetest" externalNativeBuild { cmake { path "CMakeLists.txt" - version "3.22.1" + version = "3.22.1" } } signingConfigs { @@ -38,13 +38,13 @@ android { initWith debug debuggable true jniDebuggable true - signingConfig signingConfigs.juceSigning + signingConfig = signingConfigs.juceSigning } release { initWith release debuggable false jniDebuggable false - signingConfig signingConfigs.juceSigning + signingConfig = signingConfigs.juceSigning } } diff --git a/extras/AudioPluginHost/Builds/Android/app/build.gradle b/extras/AudioPluginHost/Builds/Android/app/build.gradle index 19ddab8163..1f08eff201 100644 --- a/extras/AudioPluginHost/Builds/Android/app/build.gradle +++ b/extras/AudioPluginHost/Builds/Android/app/build.gradle @@ -3,13 +3,13 @@ apply plugin: 'com.android.application' def ndkVersionString = "28.1.13356709" android { - compileSdk 35 - ndkVersion ndkVersionString - namespace "com.juce.audiopluginhost" + compileSdk = 35 + ndkVersion = ndkVersionString + namespace = "com.juce.audiopluginhost" externalNativeBuild { cmake { path "CMakeLists.txt" - version "3.22.1" + version = "3.22.1" } } signingConfigs { @@ -38,13 +38,13 @@ android { initWith debug debuggable true jniDebuggable true - signingConfig signingConfigs.juceSigning + signingConfig = signingConfigs.juceSigning } release { initWith release debuggable false jniDebuggable false - signingConfig signingConfigs.juceSigning + signingConfig = signingConfigs.juceSigning } } diff --git a/extras/NetworkGraphicsDemo/Builds/Android/app/build.gradle b/extras/NetworkGraphicsDemo/Builds/Android/app/build.gradle index f207b810af..635ffd6a33 100644 --- a/extras/NetworkGraphicsDemo/Builds/Android/app/build.gradle +++ b/extras/NetworkGraphicsDemo/Builds/Android/app/build.gradle @@ -3,13 +3,13 @@ apply plugin: 'com.android.application' def ndkVersionString = "28.1.13356709" android { - compileSdk 35 - ndkVersion ndkVersionString - namespace "com.juce.networkgraphicsdemo" + compileSdk = 35 + ndkVersion = ndkVersionString + namespace = "com.juce.networkgraphicsdemo" externalNativeBuild { cmake { path "CMakeLists.txt" - version "3.22.1" + version = "3.22.1" } } signingConfigs { @@ -38,13 +38,13 @@ android { initWith debug debuggable true jniDebuggable true - signingConfig signingConfigs.juceSigning + signingConfig = signingConfigs.juceSigning } release { initWith release debuggable false jniDebuggable false - signingConfig signingConfigs.juceSigning + signingConfig = signingConfigs.juceSigning } } diff --git a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Android.h b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Android.h index 8af4c6b905..afdd522a7a 100644 --- a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Android.h +++ b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Android.h @@ -702,13 +702,13 @@ private: mo << "def ndkVersionString = \"28.1.13356709\"" << newLine << newLine; mo << "android {" << newLine; - mo << " compileSdk " << static_cast (androidTargetSDK.get()) << newLine; - mo << " ndkVersion ndkVersionString" << newLine; - mo << " namespace " << project.getBundleIdentifierString().toLowerCase().quoted() << newLine; + mo << " compileSdk = " << static_cast (androidTargetSDK.get()) << newLine; + mo << " ndkVersion = ndkVersionString" << newLine; + mo << " namespace = " << project.getBundleIdentifierString().toLowerCase().quoted() << newLine; mo << " externalNativeBuild {" << newLine; mo << " cmake {" << newLine; mo << " path \"CMakeLists.txt\"" << newLine; - mo << " version \"3.22.1\"" << newLine; + mo << " version = \"3.22.1\"" << newLine; mo << " }" << newLine; mo << " }" << newLine; @@ -844,7 +844,7 @@ private: mo << " initWith " << (config->isDebug() ? "debug" : "release") << newLine; mo << " debuggable " << (config->isDebug() ? "true" : "false") << newLine; mo << " jniDebuggable " << (config->isDebug() ? "true" : "false") << newLine; - mo << " signingConfig signingConfigs.juceSigning" << newLine; + mo << " signingConfig = signingConfigs.juceSigning" << newLine; mo << " }" << newLine; }