Created
July 18, 2024 10:00
-
-
Save mdjastrzebski/084b1073ddeac371887ed630b292434b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
<!-- Permissions used by RN .... --> | |
<uses-permission android:name="android.permission.INTERNET"/> | |
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> | |
<!-- Use our MainApplication class --> | |
<application | |
android:label="flutter_brownfield_app" | |
android:name=".MainApplication" | |
android:icon="@mipmap/ic_launcher" | |
android:usesCleartextTraffic="true"> | |
<!-- RN Developer Settings -> | |
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> | |
<!-- Other activities and configs .... --> | |
</application> | |
<!-- ... --> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment