author | Xeli |
Mon, 28 Nov 2011 16:19:27 +0100 | |
changeset 6454 | 24903d5c696d |
parent 6445 | fd151457fae6 |
child 6566 | bc1214f66ee4 |
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" |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
5669
diff
changeset
|
3 |
package="org.hedgewars.hedgeroid" |
6454 | 4 |
android:versionCode="7" |
5 |
android:installLocation="preferExternal" android:versionName="0.1.2.2"> |
|
6 |
<uses-sdk android:targetSdkVersion="14" android:minSdkVersion="7"></uses-sdk> |
|
5397 | 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" |
5477
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
12 |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
5397 | 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 |
||
6350 | 25 |
<activity android:name=".Downloader.DownloadFragment" |
5397 | 26 |
android:label="@string/app_name" |
6350 | 27 |
android:theme="@android:style/Theme.Dialog"> |
5397 | 28 |
</activity> |
29 |
||
6343 | 30 |
<activity android:name=".Downloader.DownloadListActivity" |
31 |
android:label="@string/app_name" |
|
6350 | 32 |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
33 |
android:screenOrientation='landscape'> |
|
6343 | 34 |
</activity> |
35 |
||
36 |
<service android:name=".Downloader.DownloadService"/> |
|
37 |
||
5435 | 38 |
<activity android:name="StartGameActivity" |
39 |
android:label="@string/app_name" |
|
5477
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
40 |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
41 |
android:screenOrientation='landscape'> |
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
42 |
</activity> |
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
43 |
<activity android:name="TeamSelectionActivity" |
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
44 |
android:label="@string/app_name" |
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
45 |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
46 |
android:screenOrientation='landscape'> |
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
47 |
</activity> |
6343 | 48 |
<activity android:name="TeamCreatorActivity" |
5477
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
49 |
android:label="@string/app_name" |
b420afbc20d4
manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents:
5435
diff
changeset
|
50 |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
6427
d2629bdee65b
android: prevent the virtual keyboard from opening at the start
Xeli
parents:
6350
diff
changeset
|
51 |
android:screenOrientation='landscape' |
d2629bdee65b
android: prevent the virtual keyboard from opening at the start
Xeli
parents:
6350
diff
changeset
|
52 |
android:windowSoftInputMode="stateUnchanged"> |
5435 | 53 |
</activity> |
5304
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
54 |
</application> |
e29aa9e29f00
Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff
changeset
|
55 |
</manifest> |