AndroidManifest.xml 1.5 KB

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