]> git.zerfleddert.de Git - FreeShisen/blame - AndroidManifest.xml
update version
[FreeShisen] / AndroidManifest.xml
CommitLineData
c6f3dff3 1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
d0e04237 3 package="de.cwde.shisensho"
ed57f02d 4 android:versionCode="3"
5 android:versionName="0.3">
d0e04237 6 <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="10"></uses-sdk>
c6f3dff3 7
8
9 <application android:icon="@drawable/icon" android:label="@string/app_name"
d0e04237 10 android:name=".ShisenSho" android:allowBackup="true">
c6f3dff3 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
42aa846a 19 android:name=".SettingsActivity"
c6f3dff3 20 android:screenOrientation="landscape">
21 <intent-filter>
d0e04237 22 <action android:name="de.cwde.shisensho.SETTINGS"/>
c6f3dff3 23 <category android:name="android.intent.category.DEFAULT"></category>
24 </intent-filter>
25 </activity>
26
27 </application>
28</manifest>
Impressum, Datenschutz