summaryrefslogtreecommitdiff
path: root/library/src/android/support/multidex/MultiDex.java
diff options
context:
space:
mode:
authorYohann Roussel <yroussel@google.com>2015-08-05 09:55:12 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-08-05 09:55:12 +0000
commitdbc7d8abf36785c381448914433138ffcef0ef5a (patch)
tree5d7d7b487834e4b488dc1a9a607f9aa980594584 /library/src/android/support/multidex/MultiDex.java
parentc19d1d6fbafb17f1e4246b346822bfc252160c25 (diff)
parentf9f54ac65185338b2726a9c6b9d791c5994c38e2 (diff)
downloadmultidex-dbc7d8abf36785c381448914433138ffcef0ef5a.tar.gz
am f9f54ac6: am 606af947: Use Context.getFilesDir as a backup dex location
* commit 'f9f54ac65185338b2726a9c6b9d791c5994c38e2': Use Context.getFilesDir as a backup dex location
Diffstat (limited to 'library/src/android/support/multidex/MultiDex.java')
-rw-r--r--library/src/android/support/multidex/MultiDex.java43
1 files changed, 40 insertions, 3 deletions
diff --git a/library/src/android/support/multidex/MultiDex.java b/library/src/android/support/multidex/MultiDex.java
index 8d5e1ab..1e04c19 100644
--- a/library/src/android/support/multidex/MultiDex.java
+++ b/library/src/android/support/multidex/MultiDex.java
@@ -60,8 +60,9 @@ public final class MultiDex {
private static final String OLD_SECONDARY_FOLDER_NAME = "secondary-dexes";
- private static final String SECONDARY_FOLDER_NAME = "code_cache" + File.separator +
- "secondary-dexes";
+ private static final String CODE_CACHE_NAME = "code_cache";
+
+ private static final String CODE_CACHE_SECONDARY_FOLDER_NAME = "secondary-dexes";
private static final int MAX_SUPPORTED_SDK_VERSION = 20;
@@ -155,7 +156,7 @@ public final class MultiDex {
+ "continuing without cleaning.", t);
}
- File dexDir = new File(applicationInfo.dataDir, SECONDARY_FOLDER_NAME);
+ File dexDir = getDexDir(context, applicationInfo);
List<File> files = MultiDexExtractor.load(context, applicationInfo, dexDir, false);
if (checkValidZipFiles(files)) {
installSecondaryDexes(loader, dexDir, files);
@@ -363,6 +364,42 @@ public final class MultiDex {
}
}
+ private static File getDexDir(Context context, ApplicationInfo applicationInfo)
+ throws IOException {
+ File cache = new File(applicationInfo.dataDir, CODE_CACHE_NAME);
+ try {
+ mkdirChecked(cache);
+ } catch (IOException e) {
+ /* If we can't emulate code_cache, then store to filesDir. This means abandoning useless
+ * files on disk if the device ever updates to android 5+. But since this seems to
+ * happen only on some devices running android 2, this should cause no pollution.
+ */
+ cache = new File(context.getFilesDir(), CODE_CACHE_NAME);
+ mkdirChecked(cache);
+ }
+ File dexDir = new File(cache, CODE_CACHE_SECONDARY_FOLDER_NAME);
+ mkdirChecked(dexDir);
+ return dexDir;
+ }
+
+ private static void mkdirChecked(File dir) throws IOException {
+ dir.mkdir();
+ if (!dir.isDirectory()) {
+ File parent = dir.getParentFile();
+ if (parent == null) {
+ Log.e(TAG, "Failed to create dir " + dir.getPath() + ". Parent file is null.");
+ } else {
+ Log.e(TAG, "Failed to create dir " + dir.getPath() +
+ ". parent file is a dir " + parent.isDirectory() +
+ ", a file " + parent.isFile() +
+ ", exists " + parent.exists() +
+ ", readable " + parent.canRead() +
+ ", writable " + parent.canWrite());
+ }
+ throw new IOException("Failed to create directory " + dir.getPath());
+ }
+ }
+
/**
* Installer for platform versions 19.
*/