From 7b388253c9ee9001cff647894fdbc26186c44266 Mon Sep 17 00:00:00 2001 From: Dmitry Yunitsky Date: Wed, 25 Mar 2015 17:09:45 +0300 Subject: [PATCH] Rate dialogs rules modification. --- android/src/com/mapswithme/maps/ads/LikesManager.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/src/com/mapswithme/maps/ads/LikesManager.java b/android/src/com/mapswithme/maps/ads/LikesManager.java index bcaea36893..51002ec451 100644 --- a/android/src/com/mapswithme/maps/ads/LikesManager.java +++ b/android/src/com/mapswithme/maps/ads/LikesManager.java @@ -12,10 +12,10 @@ import java.util.Arrays; public class LikesManager { - public static final Integer[] GPLAY_NEW_USERS = new Integer[]{3, 7, 10, 15, 21}; - public static final Integer[] GPLUS_NEW_USERS = new Integer[]{11, 20, 30, 40, 50}; - public static final Integer[] GPLAY_OLD_USERS = new Integer[]{1, 7, 10, 15, 21}; - public static final Integer[] GPLUS_OLD_USERS = new Integer[]{4, 14, 24, 34, 44}; + public static final Integer[] GPLAY_NEW_USERS = new Integer[]{3, 10, 21}; + public static final Integer[] GPLUS_NEW_USERS = new Integer[]{11, 30, 50}; + public static final Integer[] GPLAY_OLD_USERS = new Integer[]{1, 10, 21}; + public static final Integer[] GPLUS_OLD_USERS = new Integer[]{4, 24, 44}; private static final long DIALOG_DELAY_MILLIS = 30000;