AndroidManifest.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233
  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="freeglut.test.gles1"
  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="0x00010001"></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:debuggable="true"
  13. android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
  14. <!-- Our activity is the built-in NativeActivity framework class.
  15. This will take care of integrating with our NDK code. -->
  16. <activity android:name="android.app.NativeActivity"
  17. android:label="@string/app_name"
  18. android:configChanges="orientation|keyboardHidden">
  19. <!-- Tell NativeActivity the name of or .so -->
  20. <meta-data android:name="android.app.lib_name"
  21. android:value="test-shapes-gles1" />
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. </application>
  28. </manifest>
  29. <!-- END_INCLUDE(manifest) -->