You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
used the following (plus manual edits):
`clang-format --style="{BasedOnStyle: LLVM, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: true, ColumnLimit: 0}`
23 lines
708 B
Java
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) {
|
|
}
|
|
}
|