You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting from version 8, Gradle requires the namespace to be specified in the build.gradle file, and not AndroidManifest.xml.
Here is a build I have done using Gradle 8.1.1:
> Task :react-native-community_blur:processDebugManifest FAILED
1: Task failed with an exception.
-----------
* What went wrong:
Execution failed for task ':react-native-community_blur:processDebugManifest'.
> A failure occurred while executing com.android.build.gradle.tasks.ProcessLibraryManifest$ProcessLibWorkAction
> Incorrect package="com.reactnativecommunity.blurview" found in source AndroidManifest.xml: /redacted/node_modules/@react-native-community/blur/android/src/main/AndroidManifest.xml.
Setting the namespace via the package attribute in the source AndroidManifest.xml is no longer supported.
Recommendation: remove package="com.reactnativecommunity.blurview" from the source AndroidManifest.xml: /redacted/node_modules/@react-native-community/blur/android/src/main/AndroidManifest.xml.
The text was updated successfully, but these errors were encountered:
Starting from version 8, Gradle requires the namespace to be specified in the
build.gradle
file, and notAndroidManifest.xml
.Here is a build I have done using Gradle 8.1.1:
The text was updated successfully, but these errors were encountered: