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-23 09:12:49 +02:00
|
|
|
android:versionCode="6"
|
2012-12-11 00:41:08 +01:00
|
|
|
android:versionName="1.0" >
|
|
|
|
|
2013-05-23 09:12:49 +02:00
|
|
|
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="16" />
|
|
|
|
<supports-screens android:resizeable="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true"
|
|
|
|
android:xlargeScreens="true" android:anyDensity="true" />
|
2012-12-11 00:41:08 +01:00
|
|
|
<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>
|