OsmAnd/plugins/Osmand-SRTMPlugin/AndroidManifest.xml

23 lines
742 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"
2012-12-11 00:41:08 +01:00
android:versionCode="1"
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" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>