]> git.zerfleddert.de Git - FreeShisen/blame - AndroidManifest.xml
rename package to "freeshisen"
[FreeShisen] / AndroidManifest.xml
CommitLineData
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"
94761ea5 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
92b19250 13 android:name="de.cwde.freeshisen.ShisenSho"
94761ea5 14 android:allowBackup="true"
15 android:icon="@drawable/icon"
16 android:label="@string/app_name" >
17 <activity
92b19250 18 android:name="de.cwde.freeshisen.ShisenShoActivity"
94761ea5 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
92b19250 27 android:name="de.cwde.freeshisen.SettingsActivity"
28 android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity"
94761ea5 29 android:screenOrientation="landscape" >
30 <meta-data
31 android:name="android.support.PARENT_ACTIVITY"
92b19250 32 android:value="de.cwde.freeshisen.ShisenShoActivity" />
94761ea5 33 <intent-filter>
92b19250 34 <action android:name="de.cwde.freeshisen.SETTINGS" />
94761ea5 35
36 <category android:name="android.intent.category.DEFAULT" />
37 </intent-filter>
38 </activity>
39 <activity
92b19250 40 android:name="de.cwde.freeshisen.HighscoreActivity"
41 android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity"
94761ea5 42 android:screenOrientation="landscape" >
43 <meta-data
44 android:name="android.support.PARENT_ACTIVITY"
92b19250 45 android:value="de.cwde.freeshisen.ShisenShoActivity" />
94761ea5 46 </activity>
47 </application>
c6f3dff3 48
c6f3dff3 49</manifest>
Impressum, Datenschutz