Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: base/android/java/src/org/chromium/base/BaseChromiumApplication.java

Issue 2839983002: [Android] Enable multidex for release builds of chrome_public_test_apk. (RELAND) (Closed)
Patch Set: roll deps Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/BUILD.gn ('k') | base/android/java/src/org/chromium/base/multidex/ChromiumMultiDexInstaller.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/java/src/org/chromium/base/BaseChromiumApplication.java
diff --git a/base/android/java/src/org/chromium/base/BaseChromiumApplication.java b/base/android/java/src/org/chromium/base/BaseChromiumApplication.java
index 6b97bdd2eec1b88bc6dcfe3f65a4a405eaf59d44..61109f1247725df3b57434519fe998aeb2fc49a4 100644
--- a/base/android/java/src/org/chromium/base/BaseChromiumApplication.java
+++ b/base/android/java/src/org/chromium/base/BaseChromiumApplication.java
@@ -44,7 +44,9 @@ public class BaseChromiumApplication extends Application {
super.attachBaseContext(base);
assert getBaseContext() != null;
checkAppBeingReplaced();
- ChromiumMultiDexInstaller.install(this);
+ if (BuildConfig.isMultidexEnabled()) {
+ ChromiumMultiDexInstaller.install(this);
+ }
}
/**
« no previous file with comments | « base/BUILD.gn ('k') | base/android/java/src/org/chromium/base/multidex/ChromiumMultiDexInstaller.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698