diff options
| author | victorfisac <[email protected]> | 2018-03-10 19:10:37 +0100 |
|---|---|---|
| committer | victorfisac <[email protected]> | 2018-03-10 19:10:37 +0100 |
| commit | 8f1d6f38506ff6449866913c6d88b0f25ca2d8f4 (patch) | |
| tree | 659719ef12dbdedd9a51c85af0e43ac327c84b40 /templates/android_project/AndroidManifest.xml | |
| parent | dd50348b4dffe59be03538bdbaf2a3d084426e1f (diff) | |
| parent | df50eada531b54d6771eff81cbe140f9453d54d9 (diff) | |
| download | raylib-8f1d6f38506ff6449866913c6d88b0f25ca2d8f4.tar.gz raylib-8f1d6f38506ff6449866913c6d88b0f25ca2d8f4.zip | |
Merge branch 'master' of github.com:raysan5/raylib into fork/master
Diffstat (limited to 'templates/android_project/AndroidManifest.xml')
| -rw-r--r-- | templates/android_project/AndroidManifest.xml | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/templates/android_project/AndroidManifest.xml b/templates/android_project/AndroidManifest.xml deleted file mode 100644 index 1d30ab17..00000000 --- a/templates/android_project/AndroidManifest.xml +++ /dev/null @@ -1,41 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -* raylib Android project template -* -* This template has been created using raylib 1.2 (www.raylib.com) -* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) -* -* Copyright (c) 2014-2016 Ramon Santamaria (@raysan5) -* ---> -<!-- NOTE: Game package name must be unique for every app/game --> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="com.raylib.game_sample" - android:versionCode="1" - android:versionName="1.0" > - - <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" /> - <uses-feature android:glEsVersion="0x00020000" android:required="true" /> - <!--<supports-gl-texture android:name="GL_OES_compressed_ETC1_RGB8_texture" android:required="true"/>--> - <!-- We do not have Java code. Therefore android:hasCode is set to false. --> - <application android:allowBackup="false" android:hasCode="false" - android:label="@string/app_name" - android:icon="@drawable/icon" - android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" > - <!-- Our activity is the built-in NativeActivity framework class. --> - <activity android:name="android.app.NativeActivity" - android:configChanges="orientation|keyboardHidden|screenSize" - android:screenOrientation="landscape" - android:clearTaskOnLaunch="true" > - <!-- android:theme="@android:style/Theme.NoTitleBar.Fullscreen" --> - <!-- android:screenOrientation="portrait" --> - <!-- Tell NativeActivity the name of our .so --> - <meta-data android:name="android.app.lib_name" android:value="raylib_game" /> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> - </application> - -</manifest>
\ No newline at end of file |
