]> git.zerfleddert.de Git - FreeShisen/blob - AndroidManifest.xml
re-start version number counting after rename
[FreeShisen] / AndroidManifest.xml
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="1"
5 android:versionName="0.1" >
6
7 <uses-sdk
8 android:minSdkVersion="5"
9 android:targetSdkVersion="10" >
10 <!-- targetSdkVersion *must* be <=10 so we can show the legacy "menu" button -->
11 </uses-sdk>
12
13 <application
14 android:name="de.cwde.freeshisen.ShisenSho"
15 android:allowBackup="true"
16 android:icon="@drawable/icon"
17 android:label="@string/app_name" >
18 <activity
19 android:name="de.cwde.freeshisen.ShisenShoActivity"
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
28 android:name="de.cwde.freeshisen.SettingsActivity"
29 android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity"
30 android:screenOrientation="landscape" >
31 <meta-data
32 android:name="android.support.PARENT_ACTIVITY"
33 android:value="de.cwde.freeshisen.ShisenShoActivity" />
34 <intent-filter>
35 <action android:name="de.cwde.freeshisen.SETTINGS" />
36
37 <category android:name="android.intent.category.DEFAULT" />
38 </intent-filter>
39 </activity>
40 <activity
41 android:name="de.cwde.freeshisen.HighscoreActivity"
42 android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity"
43 android:screenOrientation="landscape" >
44 <meta-data
45 android:name="android.support.PARENT_ACTIVITY"
46 android:value="de.cwde.freeshisen.ShisenShoActivity" />
47 </activity>
48 </application>
49
50 </manifest>
Impressum, Datenschutz