OsmAnd/plugins/Osmand-ParkingPlugin/AndroidManifest.xml

28 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.osmand.parkingPlugin"
2016-12-27 09:46:11 +01:00
android:versionCode="9"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="16" />
2013-05-23 11:35:50 +02:00
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
2013-05-23 09:12:49 +02:00
<supports-screens android:resizeable="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true"
android:xlargeScreens="true" android:anyDensity="true" />
<application
android:icon="@drawable/icon"
2012-07-17 01:39:35 +02:00
android:label="OsmAnd Parking" >
<activity
android:name=".ParkingPluginActivity"
2016-12-09 17:10:52 +01:00
android:theme="@style/AppTheme"
android:label="@string/app_name" >
2016-12-24 08:20:17 +01:00
<!--
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
2016-12-24 08:20:17 +01:00
-->
</activity>
</application>
2016-12-11 13:05:39 +01:00
</manifest>