]> git.zerfleddert.de Git - FreeShisen/blobdiff - AndroidManifest.xml
use "original" instead of "classic" as fallback
[FreeShisen] / AndroidManifest.xml
index 6de4e1e4141e1076cb6ebf42426f64f27c31186e..090af30b23967278e0c6f75463a0c392f68a7d6c 100644 (file)
@@ -1,28 +1,58 @@
 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
-      package="org.proofofconcept.shisensho"
-      android:versionCode="1"
-      android:versionName="1.0">
-    <uses-sdk android:minSdkVersion="4"></uses-sdk>
-
-
-       <application android:icon="@drawable/icon" android:label="@string/app_name"
-               android:name=".ShisenSho">
-               <activity android:name=".ShisenShoActivity"
-                       android:screenOrientation="landscape">
-                       <intent-filter>
-                               <action android:name="android.intent.action.MAIN" />
-                               <category android:name="android.intent.category.LAUNCHER" />
-                       </intent-filter>
-               </activity>
-               <activity 
-                   android:name=".ShisenShoOptionsActivity"
-                       android:screenOrientation="landscape">
-                       <intent-filter>
-                               <action android:name="org.proofofconcept.shisensho.SETTINGS"/>
-                               <category android:name="android.intent.category.DEFAULT"></category>
-                       </intent-filter>
-               </activity>
-
-       </application>
+    package="de.cwde.freeshisen"
+    android:versionCode="6"
+    android:versionName="0.3" >
+
+    <uses-sdk
+        android:minSdkVersion="5"
+        android:targetSdkVersion="10" >
+
+        <!-- targetSdkVersion *must* be <=10 so we can show the legacy "menu" button -->
+    </uses-sdk>
+
+    <application
+        android:name="de.cwde.freeshisen.ShisenSho"
+        android:allowBackup="true"
+        android:icon="@drawable/icon"
+        android:label="@string/app_name" >
+        <activity
+            android:name="de.cwde.freeshisen.ShisenShoActivity"
+            android:screenOrientation="landscape" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+        <activity
+            android:name="de.cwde.freeshisen.SettingsActivity"
+            android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity"
+            android:screenOrientation="landscape" >
+            <meta-data
+                android:name="android.support.PARENT_ACTIVITY"
+                android:value="de.cwde.freeshisen.ShisenShoActivity" />
+
+            <intent-filter>
+                <action android:name="de.cwde.freeshisen.SETTINGS" />
+
+                <category android:name="android.intent.category.DEFAULT" />
+            </intent-filter>
+        </activity>
+        <activity
+            android:name="de.cwde.freeshisen.HighscoreActivity"
+            android:parentActivityName="de.cwde.freeshisen.ShisenShoActivity"
+            android:screenOrientation="landscape" >
+            <meta-data
+                android:name="android.support.PARENT_ACTIVITY"
+                android:value="de.cwde.freeshisen.ShisenShoActivity" />
+
+            <intent-filter>
+                <action android:name="de.cwde.freeshisen.HISCORE" />
+
+                <category android:name="android.intent.category.DEFAULT" />
+            </intent-filter>
+        </activity>
+    </application>
+
 </manifest>
\ No newline at end of file
Impressum, Datenschutz