mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-08 11:47:24 +01:00
58 lines
1.7 KiB
Kotlin
58 lines
1.7 KiB
Kotlin
package eu.kanade.tachiyomi
|
|
|
|
import android.app.Application
|
|
import android.content.Context
|
|
import android.support.multidex.MultiDex
|
|
import com.evernote.android.job.JobManager
|
|
import eu.kanade.tachiyomi.data.library.LibraryUpdateJob
|
|
import eu.kanade.tachiyomi.data.updater.UpdateCheckerJob
|
|
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()
|
|
setupJobManager()
|
|
}
|
|
|
|
override fun attachBaseContext(base: Context) {
|
|
super.attachBaseContext(base)
|
|
if (BuildConfig.DEBUG) {
|
|
MultiDex.install(this)
|
|
}
|
|
}
|
|
|
|
protected open fun setupAcra() {
|
|
ACRA.init(this)
|
|
}
|
|
|
|
protected open fun setupJobManager() {
|
|
JobManager.create(this).addJobCreator { tag ->
|
|
when (tag) {
|
|
LibraryUpdateJob.TAG -> LibraryUpdateJob()
|
|
UpdateCheckerJob.TAG -> UpdateCheckerJob()
|
|
else -> null
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|