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:
Diffstat (limited to 'android/src/com/mapswithme/maps/LightFramework.java')
-rw-r--r--android/src/com/mapswithme/maps/LightFramework.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/android/src/com/mapswithme/maps/LightFramework.java b/android/src/com/mapswithme/maps/LightFramework.java
index c3586a6a6c..f75b329482 100644
--- a/android/src/com/mapswithme/maps/LightFramework.java
+++ b/android/src/com/mapswithme/maps/LightFramework.java
@@ -1,7 +1,15 @@
package com.mapswithme.maps;
+import android.support.annotation.NonNull;
+
+import com.mapswithme.maps.api.GeoFenceFeature;
+
public class LightFramework
{
public static native boolean nativeIsAuthenticated();
public static native int nativeGetNumberUnsentUGC();
+ public static native GeoFenceFeature[] nativeGetLocalAdsFeatures(double lat, double lon,
+ double radiusInMeters, int maxCount);
+ public static native void nativeLogLocalAdsEvent(int type, double lat, double lon, int accuracyInMeters,
+ long mwmVersion, @NonNull String countryId, int featureIndex);
}