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:
authorvng <viktor.govako@gmail.com>2013-08-26 21:38:58 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:00:19 +0300
commit6481086151ad941a8537030d5d99ecc593f92b6e (patch)
tree1c34b6c3ffb76962fb72983cceb6abedb3ee61dc /android/src/com/mapswithme/maps/MWMApplication.java
parente15c2864244149eb06b84dc6e4d83bd878a70f78 (diff)
Added guide ads translations into json file from server.
Diffstat (limited to 'android/src/com/mapswithme/maps/MWMApplication.java')
-rw-r--r--android/src/com/mapswithme/maps/MWMApplication.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/android/src/com/mapswithme/maps/MWMApplication.java b/android/src/com/mapswithme/maps/MWMApplication.java
index 8e49873b8b..b387432f0d 100644
--- a/android/src/com/mapswithme/maps/MWMApplication.java
+++ b/android/src/com/mapswithme/maps/MWMApplication.java
@@ -91,12 +91,10 @@ public class MWMApplication extends android.app.Application implements MapStorag
if (Utils.hasAnyGoogleStoreInstalled())
{
final GuideInfo info = getGuideInfoForIndex(idx);
- if (info != null && !GuidesUtils.isGuideInstalled(info.getAppId(), this))
+ if (info != null && !GuidesUtils.isGuideInstalled(info.mAppId, this))
{
final Notifier notifier = new Notifier(this);
- notifier.placeGuideAvailable(info.getAppName(),
- info.getAppId(),
- getMapStorage().countryName(idx));
+ notifier.placeGuideAvailable(info.mAppId, info.mTitle, info.mMessage);
}
}
}