delete chaosflix-debugging application

This commit is contained in:
Felix 2017-10-27 00:15:16 +02:00
parent bf1a8e9f75
commit faed04e993

View file

@ -1,31 +0,0 @@
package de.nicidienase.chaosflix;
import android.app.Application;
import android.content.Context;
import android.support.multidex.MultiDex;
import com.orm.SugarContext;
/**
* Created by felix on 18.03.17.
*/
public class ChaosflixDebugApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
SugarContext.init(this);
}
@Override
public void onTerminate() {
SugarContext.terminate();
super.onTerminate();
}
@Override
protected void attachBaseContext(Context base) {
MultiDex.install(base);
super.attachBaseContext(base);
}
}