react-native-navigation的迁移库

AndroidManifest.xml 877B

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