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:
authorArsentiy Milchakov <milcars@mapswithme.com>2018-04-24 10:21:10 +0300
committerAleksandr Zatsepin <alexzatsepin@users.noreply.github.com>2018-04-25 15:38:50 +0300
commit0b718765158e0e3c7a796d60adb04f3fb519de47 (patch)
tree5388b746d8fd12b60b110fdb467834b4f127fdd6 /android/src
parent2fde0194fe4aca205fe8ee287bae381cbdeee891 (diff)
[android] load settings dir in Platform constructor
Diffstat (limited to 'android/src')
-rw-r--r--android/src/com/mapswithme/maps/MwmApplication.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/android/src/com/mapswithme/maps/MwmApplication.java b/android/src/com/mapswithme/maps/MwmApplication.java
index bb005118c5..ff79b4a219 100644
--- a/android/src/com/mapswithme/maps/MwmApplication.java
+++ b/android/src/com/mapswithme/maps/MwmApplication.java
@@ -211,7 +211,6 @@ public class MwmApplication extends Application
return;
// First we need initialize paths and platform to have access to settings and other components.
- nativePreparePlatform(settingsPath);
nativeInitPlatform(StorageUtils.getApkPath(), StorageUtils.getStoragePath(settingsPath),
filesPath, tempPath, StorageUtils.getObbGooglePath(), BuildConfig.FLAVOR,
BuildConfig.BUILD_TYPE, UiUtils.isTablet());
@@ -410,7 +409,6 @@ public class MwmApplication extends Application
mMainLoopHandler.sendMessage(m);
}
- private static native void nativePreparePlatform(String settingsPath);
private native void nativeInitPlatform(String apkPath, String storagePath, String privatePath,
String tmpPath, String obbGooglePath, String flavorName,
String buildType, boolean isTablet);