OsmAnd/plugins/Osmand-Nautical/AndroidManifest.xml

29 lines
1.1 KiB
XML
Raw Normal View History

2015-04-28 08:31:30 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.osmand.nauticalPlugin"
2015-05-09 23:53:16 +02:00
android:installLocation="auto"
2016-12-12 08:05:58 +01:00
android:versionCode="8"
2015-04-28 08:31:30 +02:00
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="16" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<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"
android:label="OsmAnd Nautical" >
<activity
2015-05-08 23:45:14 +02:00
android:name="net.osmand.nautical.NauticalActivity"
2016-12-09 17:05:17 +01:00
android:theme="@style/AppTheme"
2015-04-28 08:31:30 +02:00
android:label="@string/app_name" >
2016-12-24 08:20:17 +01:00
<!--
2015-04-28 08:31:30 +02: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
-->
2015-04-28 08:31:30 +02:00
</activity>
</application>
</manifest>