Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

39 рядки
1.9 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="14" 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. <!-- We do not have Java code. Therefore android:hasCode is set to false. -->
  19. <application android:allowBackup="false" android:hasCode="false"
  20. android:label="@string/app_name"
  21. android:icon="@drawable/icon"
  22. android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
  23. <!-- Our activity is the built-in NativeActivity framework class. -->
  24. <activity android:name="android.app.NativeActivity"
  25. android:configChanges="orientation|keyboardHidden|screenSize"
  26. android:screenOrientation="landscape"
  27. android:clearTaskOnLaunch="true" >
  28. <!-- android:theme="@android:style/Theme.NoTitleBar.Fullscreen" -->
  29. <!-- android:screenOrientation="portrait" -->
  30. <!-- Tell NativeActivity the name of our .so -->
  31. <meta-data android:name="android.app.lib_name" android:value="raylib_game" />
  32. <intent-filter>
  33. <action android:name="android.intent.action.MAIN" />
  34. <category android:name="android.intent.category.LAUNCHER" />
  35. </intent-filter>
  36. </activity>
  37. </application>
  38. </manifest>