template.AndroidManifest.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="TEMPLATE_UUID"
  4. android:versionCode="1"
  5. android:versionName="1.0">
  6. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  7. <!-- This is the platform API where the app was introduced. -->
  8. <uses-sdk android:minSdkVersion="9" />
  9. <uses-feature android:glEsVersion="0x00020000"/>
  10. <application android:icon="@drawable/icon" android:label="@string/app_name" android:hasCode="true">
  11. <!-- Our activity is the built-in NativeActivity framework class.
  12. This will take care of integrating with our NDK code. -->
  13. <activity android:name="android.app.NativeActivity"
  14. android:label="@string/app_name"
  15. android:configChanges="orientation|keyboardHidden"
  16. android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  17. android:screenOrientation="landscape">
  18. <!-- Tell NativeActivity the name of or .so -->
  19. <meta-data android:name="android.app.lib_name"
  20. android:value="TEMPLATE_PROJECT" />
  21. <intent-filter>
  22. <action android:name="android.intent.action.MAIN" />
  23. <category android:name="android.intent.category.LAUNCHER" />
  24. </intent-filter>
  25. </activity>
  26. </application>
  27. </manifest>