-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-generate AndroidManifest.xml (#112)
Relates to: #109 I'm not sure if this is strictly necessary anymore because once I had it done, I realized that #72 has stripped the `reactnative` prefix from the package name again. So technically UBRN's current output should work with what create-react-native-library generates without this change applied. It might not hurt either way though?
- Loading branch information
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{%- let android = self.config.project.android.clone() %} | ||
<!-- Generated by uniffi-bindgen-react-native --> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="{{ android.package_name() }}"> | ||
</manifest> |