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:
authorDmitry Kunin <dkunin@mapswith.me>2013-05-28 11:52:01 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:56:00 +0300
commit23d8dc504c09994df407af926806a37823e6c1ee (patch)
treea852cdf8e1237702ace59b44de1e1e5495dbee5a /android/MapsWithMeLite
parent63fee3423202e87c60bd8a289d3941e2fc609c83 (diff)
[android] Api support base code.
[android] Intermediate commit. TODO: * api point activated event and jni callback * up_block cancel logic * response sending [android] Api points click callback to Java. [android] Made my life easier.
Diffstat (limited to 'android/MapsWithMeLite')
-rw-r--r--android/MapsWithMeLite/AndroidManifest.xml23
1 files changed, 9 insertions, 14 deletions
diff --git a/android/MapsWithMeLite/AndroidManifest.xml b/android/MapsWithMeLite/AndroidManifest.xml
index 21bc0814e7..4b8c76527a 100644
--- a/android/MapsWithMeLite/AndroidManifest.xml
+++ b/android/MapsWithMeLite/AndroidManifest.xml
@@ -57,22 +57,17 @@
android:host="ge0.me"/>
</intent-filter>
- <!--
- <intent-filter><action android:name="android.intent.action.VIEW"></action>
- <category android:name="android.intent.category.DEFAULT"></category>
- <data android:scheme="ge0"></data>
- </intent-filter>
+ <!-- API CALL -->
+ <intent-filter>
+ <action android:name="com.mapswithme.maps.api.request" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
- <intent-filter><action android:name="android.intent.action.VIEW"></action>
- <category android:name="android.intent.category.DEFAULT"></category>
- <data android:scheme="mapswithme"></data>
- </intent-filter>
--->
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
</activity>
<activity android:name="com.mapswithme.maps.MWMActivity"