author | Xeli |
Thu, 14 Jul 2011 15:58:08 +0200 | |
branch | hedgeroid |
changeset 5435 | d060bfb6f670 |
parent 5397 | 4ae1b082e4ba |
child 5477 | b420afbc20d4 |
permissions | -rw-r--r-- |
5304
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
5397 | 3 |
package="org.hedgewars.mobile" |
5304
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
4 |
android:versionCode="1" |
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
5 |
android:versionName="1.0"> |
5397 | 6 |
<uses-sdk android:targetSdkVersion="8" android:minSdkVersion="5"></uses-sdk> |
7 |
<uses-permission android:name="android.permission.INTERNET"></uses-permission> |
|
8 |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> |
|
5304
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
9 |
<application android:label="@string/app_name" android:icon="@drawable/icon"> |
5397 | 10 |
<activity android:name=".MainActivity" |
5323 | 11 |
android:label="@string/app_name" |
5397 | 12 |
android:theme="@android:style/Theme" |
13 |
android:launchMode="singleTask"> |
|
5304
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
14 |
<intent-filter> |
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
15 |
<action android:name="android.intent.action.MAIN" /> |
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
16 |
<category android:name="android.intent.category.LAUNCHER" /> |
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
17 |
</intent-filter> |
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
18 |
</activity> |
5397 | 19 |
<activity android:name=".SDLActivity" |
20 |
android:label="@string/app_name" |
|
21 |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
|
22 |
android:screenOrientation='landscape'> |
|
23 |
</activity> |
|
24 |
||
5435 | 25 |
<activity android:name=".Downloader.DownloadActivity" |
5397 | 26 |
android:label="@string/app_name" |
27 |
android:theme="@android:style/Theme.Dialog" |
|
28 |
android:launchMode="singleTask"> |
|
29 |
</activity> |
|
30 |
||
5435 | 31 |
<activity android:name="StartGameActivity" |
32 |
android:label="@string/app_name" |
|
33 |
android:theme="@android:style/Theme" |
|
34 |
android:screenOrientation='landscape'> |
|
35 |
</activity> |
|
36 |
||
37 |
<service android:name=".Downloader.DownloadService"/> |
|
5304
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
38 |
</application> |
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
39 |
</manifest> |