]> git.zerfleddert.de Git - FreeShisen/blame - AndroidManifest.xml
remove "sample" files, fix classpath.
[FreeShisen] / AndroidManifest.xml
CommitLineData
c6f3dff3 1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
94761ea5 3 package="de.cwde.shisensho"
4 android:versionCode="3"
5 android:versionName="0.3" >
c6f3dff3 6
94761ea5 7 <uses-sdk
8 android:minSdkVersion="5"
9 android:targetSdkVersion="10" >
10 </uses-sdk>
c6f3dff3 11
94761ea5 12 <application
13 android:name="de.cwde.shisensho.ShisenSho"
14 android:allowBackup="true"
15 android:icon="@drawable/icon"
16 android:label="@string/app_name" >
17 <activity
18 android:name="de.cwde.shisensho.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.shisensho.SettingsActivity"
28 android:parentActivityName="de.cwde.shisensho.ShisenShoActivity"
29 android:screenOrientation="landscape" >
30 <meta-data
31 android:name="android.support.PARENT_ACTIVITY"
32 android:value="de.cwde.shisensho.ShisenShoActivity" />
33 <intent-filter>
34 <action android:name="de.cwde.shisensho.SETTINGS" />
35
36 <category android:name="android.intent.category.DEFAULT" />
37 </intent-filter>
38 </activity>
39 <activity
40 android:name="de.cwde.shisensho.HighscoreActivity"
41 android:parentActivityName="de.cwde.shisensho.ShisenShoActivity"
42 android:screenOrientation="landscape" >
43 <meta-data
44 android:name="android.support.PARENT_ACTIVITY"
45 android:value="de.cwde.shisensho.ShisenShoActivity" />
46 </activity>
47 </application>
c6f3dff3 48
c6f3dff3 49</manifest>
Impressum, Datenschutz