OsmAnd/plugins/Osmand-SRTMPlugin/AndroidManifest.xml

24 lines
765 B
XML
Raw Normal View History

2012-12-11 00:41:08 +01:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2012-12-22 16:30:48 +01:00
package="net.osmand.srtmPlugin.paid"
2013-05-21 01:42:37 +02:00
android:versionCode="5"
2012-12-11 00:41:08 +01:00
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="4" />
<application
android:icon="@drawable/icon"
2012-12-22 16:30:48 +01:00
android:label="@string/app_label" >
2012-12-11 00:41:08 +01:00
<activity
2012-12-22 16:30:48 +01:00
android:name="net.osmand.srtmPlugin.SRTMPluginActivity"
2012-12-11 00:41:08 +01:00
android:label="@string/app_name" >
2013-01-14 00:46:27 +01:00
<!--
2012-12-11 00:41:08 +01:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
2013-01-14 00:46:27 +01:00
</intent-filter> -->
2012-12-11 00:41:08 +01:00
</activity>
</application>
</manifest>