mirror of
https://github.com/bbara04/Purefin.git
synced 2026-07-23 19:26:50 +00:00
Add Timber file logging and Jellyfin log upload
This commit is contained in:
@@ -53,6 +53,7 @@ kotlin {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":data"))
|
||||
implementation(project(":core"))
|
||||
implementation(project(":core-model"))
|
||||
implementation(project(":core-ui"))
|
||||
|
||||
@@ -2,6 +2,12 @@ package hu.bbara.purefin.tv
|
||||
|
||||
import android.app.Application
|
||||
import dagger.hilt.android.HiltAndroidApp
|
||||
import hu.bbara.purefin.core.logging.PurefinLogger
|
||||
|
||||
@HiltAndroidApp
|
||||
class TvApplication : Application()
|
||||
class TvApplication : Application() {
|
||||
override fun onCreate() {
|
||||
super.onCreate()
|
||||
PurefinLogger.initialize(this)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user