AndroidManifest.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Replace org.libsdl.app with the identifier of your game below, e.g.
  3. com.gamemaker.game
  4. -->
  5. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  6. package="org.libsdl.app"
  7. android:versionCode="1"
  8. android:versionName="1.0"
  9. android:installLocation="auto">
  10. <!-- Create a Java class extending SDLActivity and place it in a
  11. directory under src matching the package, e.g.
  12. src/com/gamemaker/game/MyGame.java
  13. then replace "SDLActivity" with the name of your class (e.g. "MyGame")
  14. in the XML below.
  15. An example Java class can be found in README-android.txt
  16. -->
  17. <application android:label="@string/app_name"
  18. android:icon="@drawable/ic_launcher"
  19. android:allowBackup="true"
  20. android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  21. android:hardwareAccelerated="true" >
  22. <activity android:name="SDLActivity"
  23. android:label="@string/app_name"
  24. android:configChanges="keyboardHidden|orientation"
  25. >
  26. <intent-filter>
  27. <action android:name="android.intent.action.MAIN" />
  28. <category android:name="android.intent.category.LAUNCHER" />
  29. </intent-filter>
  30. </activity>
  31. </application>
  32. <!-- Android 2.3.3 -->
  33. <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="12" />
  34. <!-- OpenGL ES 2.0 -->
  35. <uses-feature android:glEsVersion="0x00020000" />
  36. <!-- Allow writing to external storage -->
  37. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  38. </manifest>