project_files/Android-build/SDL-android-project/AndroidManifest.xml
author nemo
Wed, 09 Aug 2017 12:46:52 -0400
changeset 12446 48ee3777e42e
parent 10017 de822cd3df3a
permissions -rw-r--r--
trying to eliminate that annoying impact sound for gears that are well under the water and not even exiting it. sheepluva might want to look this over since this is modifying his code and should perhaps be part of the addSplashForGear checks, but hadn't had much luck getting him to examine it past year or so
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"
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
     3
    package="org.hedgewars.hedgeroid"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
     4
    android:installLocation="preferExternal"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
     5
    android:versionCode="8"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
     6
    android:versionName="0.2" >
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
     7
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
     8
    <uses-sdk
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
     9
        android:minSdkVersion="7"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    10
        android:targetSdkVersion="14" >
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    11
    </uses-sdk>
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    12
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    13
    <uses-permission android:name="android.permission.INTERNET" >
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    14
    </uses-permission>
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    15
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    16
    </uses-permission>
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    17
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    18
    <application
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    19
        android:icon="@drawable/icon"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    20
        android:label="@string/app_name" >
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    21
        <activity
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    22
            android:name=".MainActivity"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    23
            android:label="@string/app_name"
7444
2e31f114f57e Hedgeroid: various improvements:
Medo <smaxein@googlemail.com>
parents: 7358
diff changeset
    24
            android:screenOrientation="landscape" >
5304
e29aa9e29f00 Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff changeset
    25
            <intent-filter>
e29aa9e29f00 Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff changeset
    26
                <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
    27
                <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
    28
            </intent-filter>
e29aa9e29f00 Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff changeset
    29
        </activity>
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    30
        <activity
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    31
            android:name=".SDLActivity"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    32
            android:label="@string/app_name"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    33
            android:screenOrientation="landscape"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    34
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
5397
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    35
        </activity>
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    36
        <activity
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    37
            android:name=".Downloader.DownloadFragment"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    38
            android:label="@string/app_name"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    39
            android:theme="@android:style/Theme.Dialog" >
5397
4ae1b082e4ba Added download functionality and changed some icons
Xeli
parents: 5333
diff changeset
    40
        </activity>
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    41
        <activity
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    42
            android:name=".Downloader.DownloadListActivity"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    43
            android:label="@string/app_name"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    44
            android:launchMode="singleTop"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    45
            android:screenOrientation="landscape"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    46
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    47
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    48
        <service android:name=".Downloader.DownloadService" />
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7582
diff changeset
    49
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    50
        <activity
7582
714310efad8f Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents: 7508
diff changeset
    51
            android:name=".LocalRoomActivity"
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    52
            android:label="@string/app_name"
7582
714310efad8f Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents: 7508
diff changeset
    53
            android:screenOrientation="landscape" >
5477
b420afbc20d4 manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents: 5435
diff changeset
    54
        </activity>
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    55
        <activity
7582
714310efad8f Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents: 7508
diff changeset
    56
            android:name=".TeamListActivity"
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    57
            android:label="@string/app_name"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    58
            android:screenOrientation="landscape"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    59
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
5477
b420afbc20d4 manifest changes, all activities are fullscreen and some activities have been added to the manifest
Xeli
parents: 5435
diff changeset
    60
        </activity>
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    61
        <activity
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    62
            android:name="TeamCreatorActivity"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    63
            android:label="@string/app_name"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    64
            android:screenOrientation="landscape"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    65
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    66
            android:windowSoftInputMode="stateUnchanged" >
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    67
        </activity>
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
    68
        <activity
7508
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    69
            android:name=".LobbyActivity"
7352
641f11cdd319 Hedgeroid: Reworked player and room lists, added menus, added playername query
Medo <smaxein@googlemail.com>
parents: 7349
diff changeset
    70
            android:label="@string/title_activity_lobby"
641f11cdd319 Hedgeroid: Reworked player and room lists, added menus, added playername query
Medo <smaxein@googlemail.com>
parents: 7349
diff changeset
    71
            android:screenOrientation="landscape"
7455
8e86d8d2927d Hedgeroid: Fix argument passing to ChatFragment, small layout fixes
Medo <smaxein@googlemail.com>
parents: 7444
diff changeset
    72
            android:windowSoftInputMode="adjustPan" >
5435
d060bfb6f670 added startlocalgame activity
Xeli
parents: 5397
diff changeset
    73
        </activity>
7461
38acbfdb484f Hedgeroid: Started to implement RoomActivity
Medo <smaxein@googlemail.com>
parents: 7455
diff changeset
    74
        <activity
7582
714310efad8f Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents: 7508
diff changeset
    75
            android:name=".NetRoomActivity"
7461
38acbfdb484f Hedgeroid: Started to implement RoomActivity
Medo <smaxein@googlemail.com>
parents: 7455
diff changeset
    76
            android:label="@string/title_activity_room"
38acbfdb484f Hedgeroid: Started to implement RoomActivity
Medo <smaxein@googlemail.com>
parents: 7455
diff changeset
    77
            android:screenOrientation="landscape"
38acbfdb484f Hedgeroid: Started to implement RoomActivity
Medo <smaxein@googlemail.com>
parents: 7455
diff changeset
    78
            android:windowSoftInputMode="adjustPan" >
38acbfdb484f Hedgeroid: Started to implement RoomActivity
Medo <smaxein@googlemail.com>
parents: 7455
diff changeset
    79
        </activity>
7508
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    80
        <activity
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    81
            android:name=".WeaponsetListActivity"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    82
            android:label="@string/title_activity_weaponset_list"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    83
            android:screenOrientation="landscape"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    84
            android:windowSoftInputMode="adjustPan" >
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    85
        </activity>
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    86
        <activity
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    87
            android:name=".WeaponsetCreatorActivity"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    88
            android:label="@string/title_activity_weaponset_creator"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    89
            android:screenOrientation="landscape"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    90
            android:windowSoftInputMode="adjustPan" >
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    91
        </activity>
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    92
        <activity
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    93
            android:name=".SchemeListActivity"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    94
            android:label="@string/title_activity_scheme_list"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    95
            android:screenOrientation="landscape"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    96
            android:windowSoftInputMode="adjustPan" >
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    97
        </activity>
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    98
        <activity
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
    99
            android:name=".SchemeCreatorActivity"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
   100
            android:label="@string/title_activity_scheme_creator"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
   101
            android:screenOrientation="landscape"
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
   102
            android:windowSoftInputMode="adjustPan" >
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7461
diff changeset
   103
        </activity>
5304
e29aa9e29f00 Added SDL-android-project, this is the Android/Java part of the application
Xeli
parents:
diff changeset
   104
    </application>
7328
cd919a2ead4e Hedgeroid: Added experimental lobby chat
Medo <smaxein@googlemail.com>
parents: 6728
diff changeset
   105
</manifest>