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