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/Framework.java')
-rw-r--r--android/src/com/mapswithme/maps/Framework.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/android/src/com/mapswithme/maps/Framework.java b/android/src/com/mapswithme/maps/Framework.java
index 8f3f17d63a..4c7eb33f74 100644
--- a/android/src/com/mapswithme/maps/Framework.java
+++ b/android/src/com/mapswithme/maps/Framework.java
@@ -75,13 +75,14 @@ public class Framework
@Retention(RetentionPolicy.SOURCE)
@IntDef({LOCAL_ADS_EVENT_SHOW_POINT, LOCAL_ADS_EVENT_OPEN_INFO, LOCAL_ADS_EVENT_CLICKED_PHONE,
- LOCAL_ADS_EVENT_CLICKED_WEBSITE})
+ LOCAL_ADS_EVENT_CLICKED_WEBSITE, LOCAL_ADS_EVENT_VISIT})
public @interface LocalAdsEventType {}
public static final int LOCAL_ADS_EVENT_SHOW_POINT = 0;
public static final int LOCAL_ADS_EVENT_OPEN_INFO = 1;
public static final int LOCAL_ADS_EVENT_CLICKED_PHONE = 2;
public static final int LOCAL_ADS_EVENT_CLICKED_WEBSITE = 3;
+ public static final int LOCAL_ADS_EVENT_VISIT = 4;
@Retention(RetentionPolicy.SOURCE)
@IntDef({ROUTE_REBUILD_AFTER_POINTS_LOADING})