Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Romanov <rromanov@65gb.net>2017-05-16 09:10:23 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2017-05-19 16:42:29 +0300
commit5051550b850c63bf166109274693c243a002a708 (patch)
treed8d00c36956f4dff45c50796c7c3d4f2c160c67e /android/AndroidManifest.xml
parent2e6ec4e17554eeceed0f8b781e8a88bce586780e (diff)
[android] Added intent processor for lead url
Diffstat (limited to 'android/AndroidManifest.xml')
-rw-r--r--android/AndroidManifest.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index 55aeaf5d9d..9c3cb541cd 100644
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -134,6 +134,17 @@
android:scheme="http"/>
</intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW"/>
+
+ <category android:name="android.intent.category.DEFAULT"/>
+ <category android:name="android.intent.category.BROWSABLE"/>
+
+ <data
+ android:host="lead"
+ android:scheme="mapsme"/>
+ </intent-filter>
+
<!-- API CALL -->
<intent-filter>
<action android:name="com.mapswithme.maps.api.request"/>