Update OsmAnd/AndroidManifest.xml
added intent filter to have geo Intent working on ICS. now on clicking on address in Contact OsmAnd is shown as option.
This commit is contained in:
parent
9ecf913283
commit
05a040635a
1 changed files with 5 additions and 0 deletions
|
@ -62,6 +62,11 @@
|
|||
<category android:name="android.intent.category.DEFAULT"></category>
|
||||
<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>
|
||||
<activity android:name="net.osmand.plus.development.TestVoiceActivity"></activity>
|
||||
<activity android:name="net.osmand.plus.activities.LocalIndexesActivity" android:label="@string/local_index_descr_title"></activity>
|
||||
|
|
Loading…
Reference in a new issue