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