]> git.zerfleddert.de Git - FreeShisen/blob - AndroidManifest.xml
651a554962cc8f62aab484a404d315c3a2057d7f
[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="3"
5 android:versionName="0.3" >
6
7 <uses-sdk
8 android:minSdkVersion="5"
9 android:targetSdkVersion="10" >
10 </uses-sdk>
11
12 <application
13 android:name="de.cwde.freeshisen.ShisenSho"
14 android:allowBackup="true"
15 android:icon="@drawable/icon"
16 android:label="@string/app_name" >
17 <activity
18 android:name="de.cwde.freeshisen.ShisenShoActivity"
19 android:screenOrientation="landscape" >
20 <intent-filter>
21 <action android:name="android.intent.action.MAIN" />
22
23 <category android:name="android.intent.category.LAUNCHER" />
24 </intent-filter>
25 </activity>
26 <activity
27 android:name="de.cwde.freeshisen.SettingsActivity"
28 android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity"
29 android:screenOrientation="landscape" >
30 <meta-data
31 android:name="android.support.PARENT_ACTIVITY"
32 android:value="de.cwde.freeshisen.ShisenShoActivity" />
33 <intent-filter>
34 <action android:name="de.cwde.freeshisen.SETTINGS" />
35
36 <category android:name="android.intent.category.DEFAULT" />
37 </intent-filter>
38 </activity>
39 <activity
40 android:name="de.cwde.freeshisen.HighscoreActivity"
41 android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity"
42 android:screenOrientation="landscape" >
43 <meta-data
44 android:name="android.support.PARENT_ACTIVITY"
45 android:value="de.cwde.freeshisen.ShisenShoActivity" />
46 </activity>
47 </application>
48
49 </manifest>
Impressum, Datenschutz