Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update AndroidManifest.xml to support AGP > 8 (#244)
When building with Gradle > 8 we get this error: ``` Execution failed for task ':@react-native-community_clipboard:processDebugManifest'. > A failure occurred while executing com.android.build.gradle.tasks.ProcessLibraryManifest$ProcessLibWorkAction > Incorrect package="com.reactnativecommunity.clipboard" found in source AndroidManifest.xml: /node_modules/@react-native-community/clipboard/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.clipboard" from the source AndroidManifest.xml: node_modules/@react-native-community/clipboard/android/src/main/AndroidManifest.xml. ``` I removed this line: `package="com.reactnativecommunity.clipboard` and the error went away.
- Loading branch information