AndroidManifest.xml 1.07 KB
Newer Older
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
1
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
2 3 4
    package="com.example"
    android:versionCode="1"
    android:versionName="1.0">
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
5 6

    <uses-permission android:name="android.permission.INTERNET" />
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
7 8 9 10 11
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

    <uses-sdk
        android:minSdkVersion="16"
        android:targetSdkVersion="22" />
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
12 13

    <application
14
      android:name=".MainApplication"
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
      android:allowBackup="true"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:theme="@style/AppTheme">
      <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
        <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>