1<manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="com.expo.mycoolapp"> 3 4 <uses-permission android:name="android.permission.INTERNET" /> 5 6 <queries> 7 <!-- Support checking for http(s) links via the Linking API --> 8 <intent> 9 <action android:name="android.intent.action.VIEW" /> 10 <category android:name="android.intent.category.BROWSABLE" /> 11 <data android:scheme="https" /> 12 </intent> 13 </queries> 14 15 <application 16 android:name=".MainApplication" 17 android:label="@string/app_name" 18 android:icon="@mipmap/ic_launcher" 19 android:roundIcon="@mipmap/ic_launcher_round" 20 android:allowBackup="true" 21 android:theme="@style/AppTheme"> 22 <activity 23 android:name=".MainActivity" 24 android:launchMode="singleTask" 25 android:label="@string/app_name" 26 android:configChanges="keyboard|keyboardHidden|orientation|screenSize" 27 android:windowSoftInputMode="adjustResize"> 28 <intent-filter> 29 <action android:name="android.intent.action.MAIN" /> 30 <category android:name="android.intent.category.LAUNCHER" /> 31 </intent-filter> 32 </activity> 33 <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> 34 </application> 35 36</manifest> 37