AndroidManifest.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="org.gameplay3d.sample_spaceship"
  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 game 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. <meta-data android:name="com.google.android.gms.games.APP_ID"
  12. android:value="@string/app_id" />
  13. <!-- Our activity is the built-in NativeActivity framework class.
  14. This will take care of integrating with our NDK code. -->
  15. <activity android:name="android.app.NativeActivity"
  16. android:label="@string/app_name"
  17. android:configChanges="orientation|keyboardHidden"
  18. android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  19. android:screenOrientation="landscape">
  20. <!-- Tell NativeActivity the name of or .so -->
  21. <meta-data android:name="android.app.lib_name" android:value="sample-spaceship"/>
  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>