AndroidManifest.xml 970 B

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