project_files/Android-build/SDL-android-project/AndroidManifest.xml
author Xeli
Fri, 17 Feb 2012 21:34:33 +0100
changeset 6701 58a43c2064ad
parent 6597 814683bbd230
child 6728 ce2b24995ab2
permissions -rw-r--r--
the onScreenwidgets are multitouch now, frequently (alternating) tapping left and right still causes it to bug though, but you have to try hard to duplicate it, works ok for now
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
24903d5c696d update android version
Xeli
parents: 6445
diff changeset
     4
      android:versionCode="7"
24903d5c696d update android version
Xeli
parents: 6445
diff changeset
     5
      android:installLocation="preferExternal" android:versionName="0.1.2.2">
24903d5c696d update android version
Xeli
parents: 6445
diff changeset
     6
    <uses-sdk android:targetSdkVersion="14" android:minSdkVersion="7"></uses-sdk>
5397
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
     7
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
     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
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    10
        <activity android:name=".MainActivity"
5323
0cb2d9e82369 Enabled fullscreen and locked it to landscap
Xeli
parents: 5304
diff changeset
    11
                  android:label="@string/app_name"
6597
814683bbd230 added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents: 6566
diff changeset
    12
 		  		  android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
5304
e29aa9e29f00 Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff changeset
    13
            <intent-filter>
e29aa9e29f00 Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff changeset
    14
                <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
    15
                <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
    16
            </intent-filter>
e29aa9e29f00 Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff changeset
    17
        </activity>
5397
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    18
        <activity android:name=".SDLActivity"
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    19
                  android:label="@string/app_name"
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    20
 		  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    21
		  android:screenOrientation='landscape'>
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    22
        </activity>
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    23
        
6350
41b0a9955c47 new download manager \o/
Xeli
parents: 6343
diff changeset
    24
        <activity android:name=".Downloader.DownloadFragment"
5397
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    25
                  android:label="@string/app_name"
6350
41b0a9955c47 new download manager \o/
Xeli
parents: 6343
diff changeset
    26
				  android:theme="@android:style/Theme.Dialog">
5397
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    27
        </activity>
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    28
        
6343
9df5a486f41e first part of the new downloader implementation
Xeli
parents: 6057
diff changeset
    29
        <activity android:name=".Downloader.DownloadListActivity"
9df5a486f41e first part of the new downloader implementation
Xeli
parents: 6057
diff changeset
    30
                  android:label="@string/app_name"
6350
41b0a9955c47 new download manager \o/
Xeli
parents: 6343
diff changeset
    31
				  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
6566
bc1214f66ee4 some bug fixed regarding the downloader
Xeli
parents: 6454
diff changeset
    32
				  android:screenOrientation='landscape'
bc1214f66ee4 some bug fixed regarding the downloader
Xeli
parents: 6454
diff changeset
    33
				  android:launchMode="singleTop"/>
6343
9df5a486f41e first part of the new downloader implementation
Xeli
parents: 6057
diff changeset
    34
        
9df5a486f41e first part of the new downloader implementation
Xeli
parents: 6057
diff changeset
    35
        <service android:name=".Downloader.DownloadService"/>
9df5a486f41e first part of the new downloader implementation
Xeli
parents: 6057
diff changeset
    36
        
5435
d060bfb6f670 added startlocalgame activity
Xeli
parents: 5397
diff changeset
    37
        <activity android:name="StartGameActivity"
d060bfb6f670 added startlocalgame activity
Xeli
parents: 5397
diff changeset
    38
                  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
    39
				  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
    40
				  android:screenOrientation='landscape'>
b420afbc20d4 manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents: 5435
diff changeset
    41
        </activity>
b420afbc20d4 manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents: 5435
diff changeset
    42
        <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
    43
                  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
    44
				  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
    45
				  android:screenOrientation='landscape'>
b420afbc20d4 manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents: 5435
diff changeset
    46
        </activity>
6343
9df5a486f41e first part of the new downloader implementation
Xeli
parents: 6057
diff changeset
    47
        <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
    48
                  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
    49
				  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
6427
d2629bdee65b android: prevent the virtual keyboard from opening at the start
Xeli
parents: 6350
diff changeset
    50
				  android:screenOrientation='landscape'
d2629bdee65b android: prevent the virtual keyboard from opening at the start
Xeli
parents: 6350
diff changeset
    51
				  android:windowSoftInputMode="stateUnchanged">
5435
d060bfb6f670 added startlocalgame activity
Xeli
parents: 5397
diff changeset
    52
        </activity>
5304
e29aa9e29f00 Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff changeset
    53
    </application>
e29aa9e29f00 Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff changeset
    54
</manifest>