1<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.helloworld">
2  <uses-permission android:name="android.permission.INTERNET"/>
3  <application
4    android:name=".MainApplication"
5    android:label="@string/app_name"
6    android:icon="@mipmap/ic_launcher"
7    android:roundIcon="@mipmap/ic_launcher_round"
8    android:allowBackup="false"
9    android:theme="@style/AppTheme"
10  >
11    <activity
12      android:name=".MainActivity"
13      android:label="@string/app_name"
14      android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
15      android:launchMode="singleTask"
16      android:windowSoftInputMode="adjustResize"
17      android:theme="@style/Theme.App.SplashScreen"
18    >
19      <intent-filter>
20        <action android:name="android.intent.action.MAIN"/>
21        <category android:name="android.intent.category.LAUNCHER"/>
22      </intent-filter>
23    </activity>
24    <activity android:name="com.facebook.react.devsupport.DevSettingsActivity"/>
25  </application>
26</manifest>