Files
android_translation_layer/src/api-impl/android/support/multidex/MultiDexApplication.java

23 lines
710 B
Java
Raw Normal View History

2022-11-04 21:18:44 +05:00
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) {
}
}