summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorYohann Roussel <yroussel@google.com>2014-01-23 18:53:10 +0100
committerYohann Roussel <yroussel@google.com>2014-02-26 16:48:02 +0100
commit1bb1ab007f6b9405227ea4ce07d2061e4dbb6fe0 (patch)
tree24b37fc36395090924754525b3a7d2931a4bf3f9 /library
parent08903bd236e03903b017ac3e5c66d9abe4b359b8 (diff)
downloadandroid_frameworks_multidex-1bb1ab007f6b9405227ea4ce07d2061e4dbb6fe0.tar.gz
android_frameworks_multidex-1bb1ab007f6b9405227ea4ce07d2061e4dbb6fe0.tar.bz2
android_frameworks_multidex-1bb1ab007f6b9405227ea4ce07d2061e4dbb6fe0.zip
Provide a default multidex capable Application.
Multidex installation in Application.attachBaseContext() requires only one call point to MultiDex.install() per Application so let's provide a default multidex capable Application. Change-Id: Icfa1993c4b3d7c5a7d1783d4ca6d5b9ea31adb8b
Diffstat (limited to 'library')
-rw-r--r--library/src/android/support/multidex/MultiDexApplication.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/library/src/android/support/multidex/MultiDexApplication.java b/library/src/android/support/multidex/MultiDexApplication.java
new file mode 100644
index 0000000..8524646
--- /dev/null
+++ b/library/src/android/support/multidex/MultiDexApplication.java
@@ -0,0 +1,41 @@
+/*
+ * Copyright (C) 2014 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.support.multidex;
+
+import android.app.Application;
+import android.content.Context;
+
+/**
+ * Minimal MultiDex capable application. To use the legacy multidex library there is 3 possibility:
+ * <ul>
+ * <li>Declare this class as the application in your AndroidManifest.xml.</li>
+ * <li>Have your {@link Application} extends this class.</li>
+ * <li>Have your {@link Application} override attachBaseContext starting with<br>
+ * <code>
+ protected void attachBaseContext(Context base) {<br>
+ super.attachBaseContext(base);<br>
+ MultiDex.install(this);
+ </code></li>
+ * <ul>
+ */
+public class MultiDexApplication extends Application {
+ @Override
+ protected void attachBaseContext(Context base) {
+ super.attachBaseContext(base);
+ MultiDex.install(this);
+ }
+}