forked from github/wulkanowy-mirror

* Remove remote and local repos * Move repositories out of sub-packages * Update chucker config * Move repositories tests from androidTest to unit tests * Rewrite grades tests * Fix more tests * Update grade statistics tests
89 lines
2.6 KiB
Kotlin
89 lines
2.6 KiB
Kotlin
package io.github.wulkanowy
|
|
|
|
import android.app.Application
|
|
import android.content.Context
|
|
import android.util.Log.DEBUG
|
|
import android.util.Log.INFO
|
|
import android.util.Log.VERBOSE
|
|
import androidx.hilt.work.HiltWorkerFactory
|
|
import androidx.multidex.MultiDex
|
|
import androidx.work.Configuration
|
|
import com.yariksoffice.lingver.Lingver
|
|
import dagger.hilt.android.HiltAndroidApp
|
|
import fr.bipi.tressence.file.FileLoggerTree
|
|
import io.github.wulkanowy.data.repositories.PreferencesRepository
|
|
import io.github.wulkanowy.ui.base.ThemeManager
|
|
import io.github.wulkanowy.utils.ActivityLifecycleLogger
|
|
import io.github.wulkanowy.utils.AnalyticsHelper
|
|
import io.github.wulkanowy.utils.AppInfo
|
|
import io.github.wulkanowy.utils.CrashLogExceptionTree
|
|
import io.github.wulkanowy.utils.CrashLogTree
|
|
import io.github.wulkanowy.utils.DebugLogTree
|
|
import timber.log.Timber
|
|
import javax.inject.Inject
|
|
|
|
@HiltAndroidApp
|
|
class WulkanowyApp : Application(), Configuration.Provider {
|
|
|
|
@Inject
|
|
lateinit var workerFactory: HiltWorkerFactory
|
|
|
|
@Inject
|
|
lateinit var themeManager: ThemeManager
|
|
|
|
@Inject
|
|
lateinit var appInfo: AppInfo
|
|
|
|
@Inject
|
|
lateinit var preferencesRepository: PreferencesRepository
|
|
|
|
@Inject
|
|
lateinit var analyticsHelper: AnalyticsHelper
|
|
|
|
override fun attachBaseContext(base: Context?) {
|
|
super.attachBaseContext(base)
|
|
MultiDex.install(this)
|
|
}
|
|
|
|
override fun onCreate() {
|
|
super.onCreate()
|
|
Lingver.init(this)
|
|
themeManager.applyDefaultTheme()
|
|
|
|
initLogging()
|
|
logCurrentLanguage()
|
|
}
|
|
|
|
private fun initLogging() {
|
|
if (appInfo.isDebug) {
|
|
Timber.plant(DebugLogTree())
|
|
Timber.plant(FileLoggerTree.Builder()
|
|
.withFileName("wulkanowy.%g.log")
|
|
.withDirName(applicationContext.filesDir.absolutePath)
|
|
.withFileLimit(10)
|
|
.withMinPriority(DEBUG)
|
|
.build()
|
|
)
|
|
} else {
|
|
Timber.plant(CrashLogExceptionTree())
|
|
Timber.plant(CrashLogTree())
|
|
}
|
|
registerActivityLifecycleCallbacks(ActivityLifecycleLogger())
|
|
}
|
|
|
|
private fun logCurrentLanguage() {
|
|
val newLang = if (preferencesRepository.appLanguage == "system") {
|
|
appInfo.systemLanguage
|
|
} else {
|
|
preferencesRepository.appLanguage
|
|
}
|
|
|
|
analyticsHelper.logEvent("language", "startup" to newLang)
|
|
}
|
|
|
|
override fun getWorkManagerConfiguration() = Configuration.Builder()
|
|
.setWorkerFactory(workerFactory)
|
|
.setMinimumLoggingLevel(if (appInfo.isDebug) VERBOSE else INFO)
|
|
.build()
|
|
}
|