react-native-navigation的迁移库

AndroidManifest.xml 776B

1234567891011121314151617181920212223
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.reactnativenavigation.playground">
  3. <uses-permission android:name="android.permission.INTERNET" />
  4. <application
  5. android:name=".MainApplication"
  6. android:allowBackup="false"
  7. android:icon="@mipmap/ic_launcher"
  8. android:label="@string/app_name"
  9. android:theme="@style/AppTheme"
  10. >
  11. <activity
  12. android:name=".MainActivity"
  13. android:label="@string/app_name">
  14. <intent-filter>
  15. <action android:name="android.intent.action.MAIN" />
  16. <category android:name="android.intent.category.LAUNCHER" />
  17. </intent-filter>
  18. </activity>
  19. </application>
  20. </manifest>