Skip to content

Instantly share code, notes, and snippets.

@AlexMisiulia
Created September 16, 2019 13:40
Show Gist options
  • Save AlexMisiulia/91df86a7403cbaf4c38efadf4a18047d to your computer and use it in GitHub Desktop.
Save AlexMisiulia/91df86a7403cbaf4c38efadf4a18047d to your computer and use it in GitHub Desktop.
public class AppBase extends MultiDexApplication {
private static AppBase inst;
@Override
public void onCreate() {
super.onCreate();
inst = this;
}
public static AppBase getInst(){
return inst;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment