Created
March 16, 2017 14:50
-
-
Save clayallsopp/ce2d57c26d4bf5afebd39e3b47a25242 to your computer and use it in GitHub Desktop.
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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.testapp" | |
android:versionCode="1" | |
android:versionName="1.0" > | |
<uses-sdk | |
android:minSdkVersion="16" | |
android:targetSdkVersion="22" /> | |
<!-- These are added by React Native for debug mode, but aren't needed in release mode --> | |
<uses-permission android:name="android.permission.INTERNET" /> <!-- These permissions are added implicitly by android-jsc, see https://github.com/facebook/android-jsc/pull/12 --> | |
<!-- The following lines can be removed after android-jsc is updated in react-native --> | |
<application | |
android:name="com.testapp.MainApplication" | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:theme="@style/AppTheme" > | |
<activity | |
android:name="com.testapp.MainActivity" | |
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" | |
android:label="@string/app_name" | |
android:windowSoftInputMode="adjustResize" > | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> | |
</activity> | |
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment