You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 regels
1.6 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. * raylib Android project template
  4. *
  5. * This template has been created using raylib 1.2 (www.raylib.com)
  6. * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
  7. *
  8. * Copyright (c) 2014 Ramon Santamaria (Ray San - raysan@raysanweb.com)
  9. *
  10. -->
  11. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  12. package="com.raysan5.raylib_test"
  13. android:versionCode="1"
  14. android:versionName="1.0" >
  15. <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="17" />
  16. <uses-feature android:glEsVersion="0x00020000" android:required="true" />
  17. <!--<supports-gl-texture android:name="GL_OES_compressed_ETC1_RGB8_texture" android:required="true"/>-->
  18. <application android:allowBackup="false" android:hasCode="false"
  19. android:label="@string/app_name"
  20. android:icon="@drawable/icon"
  21. android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
  22. <activity android:name="android.app.NativeActivity"
  23. android:configChanges="orientation|keyboardHidden"
  24. android:screenOrientation="landscape"
  25. android:clearTaskOnLaunch="true" >
  26. <!-- android:screenOrientation="portrait" -->
  27. <meta-data android:name="android.app.lib_name" android:value="@string/app_name" />
  28. <intent-filter>
  29. <action android:name="android.intent.action.MAIN" />
  30. <category android:name="android.intent.category.LAUNCHER" />
  31. </intent-filter>
  32. </activity>
  33. </application>
  34. </manifest>