mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
34 lines
963 B
Kotlin
34 lines
963 B
Kotlin
package eu.kanade.tachiyomi
|
|
|
|
import android.app.Application
|
|
import org.acra.ACRA
|
|
import org.acra.annotation.ReportsCrashes
|
|
import timber.log.Timber
|
|
import uy.kohesive.injekt.Injekt
|
|
import uy.kohesive.injekt.api.InjektScope
|
|
import uy.kohesive.injekt.registry.default.DefaultRegistrar
|
|
|
|
@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()
|
|
Injekt = InjektScope(DefaultRegistrar())
|
|
Injekt.importModule(AppModule(this))
|
|
|
|
if (BuildConfig.DEBUG) Timber.plant(Timber.DebugTree())
|
|
|
|
setupAcra()
|
|
}
|
|
|
|
protected open fun setupAcra() {
|
|
ACRA.init(this)
|
|
}
|
|
|
|
}
|