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

LightFramework.java « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f75b3294820754ea72c93f02296f03e644a30ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}