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:
rahulmaindargi 2012-08-29 16:39:52 +05:30
parent 9ecf913283
commit 05a040635a

View file

@ -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>