INNER CODE UNIT · Java
onCreate
UnevenSoftware/LeafPic · app/src/main/java/org/horaapps/leafpic/App.java:23
public void onCreate() {
super.onCreate();
mInstance = this;
ApplicationUtils.init(this);
/** This process is dedicated to LeakCanary for heap analysis.
* You should not init your app in this process. */
if (LeakCanary.isInAnalyzerProcess(this)) {
return;
}
LeakCanary.install(this);
registerFontIcons();
initialiseStorage();
}
public static App getInstance() {