No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

40 líneas
2.0 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-2016 Ramon Santamaria (@raysan5)
  9. *
  10. -->
  11. <!-- NOTE: Game package name must be unique for every app/game -->
  12. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  13. package="com.raylib.game_sample"
  14. android:versionCode="1"
  15. android:versionName="1.0" >
  16. <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />
  17. <uses-feature android:glEsVersion="0x00020000" android:required="true" />
  18. <!--<supports-gl-texture android:name="GL_OES_compressed_ETC1_RGB8_texture" android:required="true"/>-->
  19. <!-- We do not have Java code. Therefore android:hasCode is set to false. -->
  20. <application android:allowBackup="false" android:hasCode="false"
  21. android:label="@string/app_name"
  22. android:icon="@drawable/icon"
  23. android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
  24. <!-- Our activity is the built-in NativeActivity framework class. -->
  25. <activity android:name="android.app.NativeActivity"
  26. android:configChanges="orientation|keyboardHidden|screenSize"
  27. android:screenOrientation="landscape"
  28. android:clearTaskOnLaunch="true" >
  29. <!-- android:theme="@android:style/Theme.NoTitleBar.Fullscreen" -->
  30. <!-- android:screenOrientation="portrait" -->
  31. <!-- Tell NativeActivity the name of our .so -->
  32. <meta-data android:name="android.app.lib_name" android:value="raylib_game" />
  33. <intent-filter>
  34. <action android:name="android.intent.action.MAIN" />
  35. <category android:name="android.intent.category.LAUNCHER" />
  36. </intent-filter>
  37. </activity>
  38. </application>
  39. </manifest>