From 95e14318fca4e82127ae456dfe606d2f1d4e570d Mon Sep 17 00:00:00 2001 From: alexzatsepin Date: Thu, 20 Apr 2017 19:40:10 +0300 Subject: [PATCH] [android] Reduced request time for native ads --- android/src/com/mapswithme/maps/ads/CachingNativeAdLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/com/mapswithme/maps/ads/CachingNativeAdLoader.java b/android/src/com/mapswithme/maps/ads/CachingNativeAdLoader.java index 84e3f0a2b6..eaa54b5f5a 100644 --- a/android/src/com/mapswithme/maps/ads/CachingNativeAdLoader.java +++ b/android/src/com/mapswithme/maps/ads/CachingNativeAdLoader.java @@ -19,7 +19,7 @@ abstract class CachingNativeAdLoader extends BaseNativeAdLoader { private static final Logger LOGGER = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC); private static final String TAG = CachingNativeAdLoader.class.getSimpleName(); - private static final long REQUEST_INTERVAL_MS = 30 * 1000; + private static final long REQUEST_INTERVAL_MS = 5 * 1000; private static final Map CACHE = new HashMap<>(); private static final Set PENDING_REQUESTS = new HashSet<>();