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:
authoralexzatsepin <az@mapswithme.com>2017-04-20 19:40:10 +0300
committeralexzatsepin <az@mapswithme.com>2017-04-20 19:40:10 +0300
commit95e14318fca4e82127ae456dfe606d2f1d4e570d (patch)
tree27625d42736377b3b38f3d4aa87de5dd0b3d0dbf /android
parentbd258891e647e546370843a95dbfe6db8c9d9d16 (diff)
[android] Reduced request time for native ads
Diffstat (limited to 'android')
-rw-r--r--android/src/com/mapswithme/maps/ads/CachingNativeAdLoader.java2
1 files changed, 1 insertions, 1 deletions
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<BannerKey, CachedMwmNativeAd> CACHE = new HashMap<>();
private static final Set<BannerKey> PENDING_REQUESTS = new HashSet<>();