Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
41 lines (35 loc) · 1.55 KB

AndroidManifest.xml

File metadata and controls

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