From 4ad210b6c7a095321db41c5d6c32bb13873bea55 Mon Sep 17 00:00:00 2001 From: KrzysztofMoch Date: Mon, 25 Sep 2023 12:08:11 +0200 Subject: [PATCH] chore(android/gradle): update namespace handler --- android/build.gradle | 30 ++++++++++++++++++++----- android/src/main/AndroidManifestNew.xml | 2 ++ 2 files changed, 26 insertions(+), 6 deletions(-) create mode 100644 android/src/main/AndroidManifestNew.xml diff --git a/android/build.gradle b/android/build.gradle index fc609670..efc72f3b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -24,11 +24,20 @@ def getExtOrDefault(name, defaultValue) { } def isNewArchitectureEnabled() { - // To opt-in for the New Architecture, you can either: - // - Set `newArchEnabled` to true inside the `gradle.properties` file - // - Invoke gradle with `-newArchEnabled=true` - // - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true` - return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true" + return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true" +} + +def supportsNamespace() { + def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') + def major = parsed[0].toInteger() + def minor = parsed[1].toInteger() + + // Namespace support was added in 7.3.0 + if (major == 7 && minor >= 3) { + return true + } + + return major >= 8 } def useExoplayerIMA = safeExtGet("RNVUseExoplayerIMA", false) @@ -48,7 +57,16 @@ if (isNewArchitectureEnabled()) { } android { - namespace 'com.brentvatne.react' + if (supportsNamespace()) { + namespace 'com.brentvatne.react' + + sourceSets { + main { + manifest.srcFile "src/main/AndroidManifestNew.xml" + } + } + } + compileSdkVersion safeExtGet('compileSdkVersion', 31) buildToolsVersion safeExtGet('buildToolsVersion', '30.0.2') diff --git a/android/src/main/AndroidManifestNew.xml b/android/src/main/AndroidManifestNew.xml new file mode 100644 index 00000000..a2f47b60 --- /dev/null +++ b/android/src/main/AndroidManifestNew.xml @@ -0,0 +1,2 @@ + +