From faf9670333b16bb9cc2d55a89f3fa4c4553ddcc0 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Mon, 3 Jul 2023 22:01:48 +0200 Subject: [PATCH] fix: Add support for RN 0.72 Adds `namespace` to `build.gradle` (this is required by Gradle 8, which RN 0.72 uses) --- android/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/android/build.gradle b/android/build.gradle index c3fa67ee..8e13687a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -28,6 +28,7 @@ def getExtOrIntegerDefault(name) { } android { + namespace 'com.reactnativecommunity.blurview' compileSdkVersion getExtOrIntegerDefault('compileSdkVersion') defaultConfig {