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