droid48/AndroidManifest.xml

22 lines
1.3 KiB
XML
Raw Normal View History

2010-09-18 01:13:52 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.ab.x48" android:installLocation="auto" android:versionCode="55" android:versionName="1.55">
2010-09-18 01:13:52 +02:00
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".X48"
android:label="@string/app_name"
2012-11-10 19:08:14 +01:00
android:configChanges="keyboardHidden|orientation" android:launchMode="singleTop"> <!-- |screenSize -->
2010-09-18 01:13:52 +02:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ProgListView" android:label="@string/load_prog">
</activity>
<activity android:name=".Settings" android:label="@string/choose_contrast_value"></activity>
</application>
2014-08-15 12:56:09 +02:00
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19"/>
2011-12-18 18:04:28 +01:00
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true"></supports-screens>
2010-09-18 01:13:52 +02:00
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
</manifest>