| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="de.cwde.shisensho" |
| 4 | android:versionCode="1" |
| 5 | android:versionName="0.1"> |
| 6 | <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="10"></uses-sdk> |
| 7 | |
| 8 | |
| 9 | <application android:icon="@drawable/icon" android:label="@string/app_name" |
| 10 | android:name=".ShisenSho" android:allowBackup="true"> |
| 11 | <activity android:name=".ShisenShoActivity" |
| 12 | android:screenOrientation="landscape"> |
| 13 | <intent-filter> |
| 14 | <action android:name="android.intent.action.MAIN" /> |
| 15 | <category android:name="android.intent.category.LAUNCHER" /> |
| 16 | </intent-filter> |
| 17 | </activity> |
| 18 | <activity |
| 19 | android:name=".ShisenShoOptionsActivity" |
| 20 | android:screenOrientation="landscape"> |
| 21 | <intent-filter> |
| 22 | <action android:name="de.cwde.shisensho.SETTINGS"/> |
| 23 | <category android:name="android.intent.category.DEFAULT"></category> |
| 24 | </intent-filter> |
| 25 | </activity> |
| 26 | |
| 27 | </application> |
| 28 | </manifest> |