mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
49 lines
1.3 KiB
Java
49 lines
1.3 KiB
Java
package eu.kanade.mangafeed;
|
|
|
|
import android.app.Application;
|
|
import android.content.Context;
|
|
|
|
import org.acra.annotation.ReportsCrashes;
|
|
|
|
import timber.log.Timber;
|
|
|
|
@ReportsCrashes(
|
|
formUri = "http://couch.kanade.eu/acra-manga/_design/acra-storage/_update/report",
|
|
reportType = org.acra.sender.HttpSender.Type.JSON,
|
|
httpMethod = org.acra.sender.HttpSender.Method.PUT,
|
|
formUriBasicAuthLogin="test",
|
|
formUriBasicAuthPassword="test"
|
|
)
|
|
public class App extends Application {
|
|
|
|
AppComponent mApplicationComponent;
|
|
|
|
@Override
|
|
public void onCreate() {
|
|
super.onCreate();
|
|
if (BuildConfig.DEBUG) Timber.plant(new Timber.DebugTree());
|
|
|
|
mApplicationComponent = DaggerAppComponent.builder()
|
|
.appModule(new AppModule(this))
|
|
.build();
|
|
|
|
//ACRA.init(this);
|
|
}
|
|
|
|
public static App get(Context context) {
|
|
return (App) context.getApplicationContext();
|
|
}
|
|
|
|
public AppComponent getComponent() {
|
|
return mApplicationComponent;
|
|
}
|
|
|
|
public static AppComponent getComponent(Context context) {
|
|
return get(context).getComponent();
|
|
}
|
|
|
|
// Needed to replace the component with a test specific one
|
|
public void setComponent(AppComponent applicationComponent) {
|
|
mApplicationComponent = applicationComponent;
|
|
}
|
|
}
|