author | Sam Lantinga <slouken@libsdl.org> |
Fri, 02 Nov 2012 03:03:55 -0700 | |
changeset 6632 | 147f85ac2e4b |
parent 6631 | 47ab7ba21530 |
child 6838 | abd1407af1f9 |
permissions | -rw-r--r-- |
4965
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
6631
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
3 |
<!-- Replace org.libsdl.app with the identifier of your game, e.g. |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
4 |
com.gamemaker.game |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
5 |
--> |
4965
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
6 |
package="org.libsdl.app" |
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
7 |
android:versionCode="1" |
6631
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
8 |
android:versionName="1.0" |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
9 |
android:installLocation="auto"> |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
10 |
|
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
11 |
<!-- Create a Java class extending SDLActivity and place it in a |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
12 |
directory under src matching the package, e.g. |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
13 |
src/com/gamemaker/game/MyGame.java |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
14 |
|
6632
147f85ac2e4b
Simplified the manifest a little - we don't need a Java class in there. :)
Sam Lantinga <slouken@libsdl.org>
parents:
6631
diff
changeset
|
15 |
then replace "SDLActivity" with the name of your class (e.g. "MyGame") |
147f85ac2e4b
Simplified the manifest a little - we don't need a Java class in there. :)
Sam Lantinga <slouken@libsdl.org>
parents:
6631
diff
changeset
|
16 |
in the XML below. |
6392
fa7eb111f994
Fixed bug 1564 - SDL has no function to open a screen keyboard on Android.
Sam Lantinga <slouken@libsdl.org>
parents:
4965
diff
changeset
|
17 |
|
6632
147f85ac2e4b
Simplified the manifest a little - we don't need a Java class in there. :)
Sam Lantinga <slouken@libsdl.org>
parents:
6631
diff
changeset
|
18 |
An example Java class can be found in README.android |
6631
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
19 |
--> |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
20 |
<application android:label="@string/app_name" |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
21 |
android:icon="@drawable/icon" |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
22 |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> |
4965
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
23 |
<activity android:name="SDLActivity" |
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
24 |
android:label="@string/app_name"> |
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
25 |
<intent-filter> |
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
26 |
<action android:name="android.intent.action.MAIN" /> |
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
27 |
<category android:name="android.intent.category.LAUNCHER" /> |
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
28 |
</intent-filter> |
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
29 |
</activity> |
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
30 |
</application> |
6631
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
31 |
|
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
32 |
<!-- Android 2.1 --> |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
33 |
<uses-sdk android:minSdkVersion="10" /> |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
34 |
|
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
35 |
<!-- OpenGL ES 2.0 --> |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
36 |
<uses-feature android:glEsVersion="0x00020000" /> |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
37 |
|
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
38 |
<!-- Allow writing to external storage --> |
47ab7ba21530
Updated the Android project template and README.android
Sam Lantinga <slouken@libsdl.org>
parents:
6392
diff
changeset
|
39 |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
4965
91d0085b7560
Added the Android project and lots of info to README.android
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
40 |
</manifest> |