Files
android_translation_layer/src/api-impl/android/support/multidex/MultiDexApplication.java
Mis012 0a9591c474 src/api-impl: fix up code style, mainly for code imported from AOSP
used the following (plus manual edits):
`clang-format --style="{BasedOnStyle: LLVM, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: true, ColumnLimit: 0}`
2023-06-22 11:45:46 +02:00

23 lines
708 B
Java

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 {
protected void attachBaseContext(Context base) {
}
}