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
fixme-desc: add some stubs
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user