c6f3dff3 |
1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
92b19250 |
3 | package="de.cwde.freeshisen" |
54d308ad |
4 | android:versionCode="3" |
3c53354e |
5 | android:versionName="0.1" > |
c6f3dff3 |
6 | |
94761ea5 |
7 | <uses-sdk |
8 | android:minSdkVersion="5" |
9 | android:targetSdkVersion="10" > |
a364582d |
10 | |
3c53354e |
11 | <!-- targetSdkVersion *must* be <=10 so we can show the legacy "menu" button --> |
94761ea5 |
12 | </uses-sdk> |
c6f3dff3 |
13 | |
94761ea5 |
14 | <application |
92b19250 |
15 | android:name="de.cwde.freeshisen.ShisenSho" |
94761ea5 |
16 | android:allowBackup="true" |
17 | android:icon="@drawable/icon" |
18 | android:label="@string/app_name" > |
19 | <activity |
92b19250 |
20 | android:name="de.cwde.freeshisen.ShisenShoActivity" |
94761ea5 |
21 | android:screenOrientation="landscape" > |
22 | <intent-filter> |
23 | <action android:name="android.intent.action.MAIN" /> |
24 | |
25 | <category android:name="android.intent.category.LAUNCHER" /> |
26 | </intent-filter> |
27 | </activity> |
28 | <activity |
92b19250 |
29 | android:name="de.cwde.freeshisen.SettingsActivity" |
30 | android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity" |
94761ea5 |
31 | android:screenOrientation="landscape" > |
32 | <meta-data |
33 | android:name="android.support.PARENT_ACTIVITY" |
92b19250 |
34 | android:value="de.cwde.freeshisen.ShisenShoActivity" /> |
a364582d |
35 | |
94761ea5 |
36 | <intent-filter> |
92b19250 |
37 | <action android:name="de.cwde.freeshisen.SETTINGS" /> |
94761ea5 |
38 | |
39 | <category android:name="android.intent.category.DEFAULT" /> |
40 | </intent-filter> |
41 | </activity> |
42 | <activity |
92b19250 |
43 | android:name="de.cwde.freeshisen.HighscoreActivity" |
44 | android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity" |
94761ea5 |
45 | android:screenOrientation="landscape" > |
46 | <meta-data |
47 | android:name="android.support.PARENT_ACTIVITY" |
92b19250 |
48 | android:value="de.cwde.freeshisen.ShisenShoActivity" /> |
a364582d |
49 | |
50 | <intent-filter> |
51 | <action android:name="de.cwde.freeshisen.HISCORE" /> |
52 | |
53 | <category android:name="android.intent.category.DEFAULT" /> |
54 | </intent-filter> |
94761ea5 |
55 | </activity> |
56 | </application> |
c6f3dff3 |
57 | |
c6f3dff3 |
58 | </manifest> |