fix: gradle deprecation warnings about property assignment (#1821)

When building a plain Android Cordova app without plugins, there will be Gradle depraction warnings: `Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.`. Compiling it with `--warning-mode all` shows, that some properties are assigned without an `=`, which will not be supported any longer with Gradle 10.0.
This commit is contained in:
Manuel Beck
2025-07-09 05:18:02 +02:00
committed by GitHub
parent b79232612b
commit df36c7a2c4
3 changed files with 5 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ allprojects {
apply plugin: 'com.android.library'
android {
namespace 'org.apache.cordova'
namespace = 'org.apache.cordova'
compileSdkVersion cordovaConfig.COMPILE_SDK_VERSION
buildToolsVersion cordovaConfig.BUILD_TOOLS_VERSION