2016-03-19 12:48:55 -04:00
|
|
|
package eu.kanade.tachiyomi
|
|
|
|
|
|
|
|
import android.app.Application
|
|
|
|
import org.acra.ACRA
|
|
|
|
import org.acra.annotation.ReportsCrashes
|
|
|
|
import timber.log.Timber
|
2016-06-14 09:13:48 -04:00
|
|
|
import uy.kohesive.injekt.Injekt
|
2016-06-15 11:58:28 -04:00
|
|
|
import uy.kohesive.injekt.api.InjektScope
|
|
|
|
import uy.kohesive.injekt.registry.default.DefaultRegistrar
|
2016-03-19 12:48:55 -04:00
|
|
|
|
|
|
|
@ReportsCrashes(
|
|
|
|
formUri = "http://tachiyomi.kanade.eu/crash_report",
|
|
|
|
reportType = org.acra.sender.HttpSender.Type.JSON,
|
|
|
|
httpMethod = org.acra.sender.HttpSender.Method.PUT,
|
|
|
|
buildConfigClass = BuildConfig::class,
|
|
|
|
excludeMatchingSharedPreferencesKeys = arrayOf(".*username.*", ".*password.*")
|
|
|
|
)
|
|
|
|
open class App : Application() {
|
|
|
|
|
|
|
|
override fun onCreate() {
|
|
|
|
super.onCreate()
|
2016-06-15 11:58:28 -04:00
|
|
|
Injekt = InjektScope(DefaultRegistrar())
|
2016-06-14 09:13:48 -04:00
|
|
|
Injekt.importModule(AppModule(this))
|
2016-06-15 11:58:28 -04:00
|
|
|
|
2016-03-19 12:48:55 -04:00
|
|
|
if (BuildConfig.DEBUG) Timber.plant(Timber.DebugTree())
|
|
|
|
|
|
|
|
setupAcra()
|
|
|
|
}
|
|
|
|
|
|
|
|
protected open fun setupAcra() {
|
|
|
|
ACRA.init(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|