44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="net.osmand.addressPlugin"
|
||
|
android:versionCode="5"
|
||
|
android:versionName="1.0" >
|
||
|
|
||
|
<uses-sdk android:minSdkVersion="10" />
|
||
|
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
|
||
|
<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 Contact Plugin" >
|
||
|
<activity
|
||
|
android:name=".AddressBookPluginActivity"
|
||
|
android:label="@string/app_name" >
|
||
|
<!--
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
</intent-filter>
|
||
|
-->
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name=".ContactAddressPluginActivity"
|
||
|
android:label="@string/app_name" >
|
||
|
<!-- <intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
<category android:name="android.intent.category.APP_MAPS" />
|
||
|
<data android:scheme="geo"></data>
|
||
|
</intent-filter>
|
||
|
-->
|
||
|
<intent-filter android:label="OsmAnd">
|
||
|
<action android:name="android.intent.action.VIEW" />
|
||
|
<category android:name="android.intent.category.DEFAULT" />
|
||
|
<data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|