-
Notifications
You must be signed in to change notification settings - Fork 8
/
AndroidManifest.xml
95 lines (90 loc) · 3.39 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.settlers.hd"
android:installLocation="auto"
android:versionCode="16"
android:versionName="2.0.1" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:name=".Settlers"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:allowBackup="true" >
<activity
android:name=".Main"
android:configChanges="locale"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo" >
<intent-filter>
<action
android:name="android.intent.action.MAIN"
android:launchMode="standard"
android:screenOrientation="portrait" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".LocalGame"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo.Dialog" >
</activity>
<activity
android:name=".Reference"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo.Dialog" >
</activity>
<activity
android:name=".Status"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo.Dialog" >
</activity>
<activity
android:name=".Discard"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo.Dialog" >
</activity>
<activity
android:name=".Stats"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo.Dialog" >
</activity>
<activity
android:name=".GameActivity"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo" >
</activity>
<activity
android:name=".Rules"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo" >
</activity>
<activity
android:name=".PlayerTrade"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo.Dialog" >
</activity>
<activity
android:name=".AcceptTrade"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo.Dialog" >
</activity>
<activity
android:name=".CounterOffer"
android:label="@string/app_name"
android:launchMode="standard"
android:theme="@android:style/Theme.Holo.Dialog" >
</activity>
</application>
</manifest>