Add Timber file logging and Jellyfin log upload

This commit is contained in:
2026-05-14 18:06:54 +02:00
parent f95fbf72b3
commit 4b87f93dee
21 changed files with 430 additions and 100 deletions

View File

@@ -2,8 +2,12 @@ package hu.bbara.purefin
import android.app.Application
import dagger.hilt.android.HiltAndroidApp
import hu.bbara.purefin.core.logging.PurefinLogger
@HiltAndroidApp
class PurefinApplication : Application() {
}
override fun onCreate() {
super.onCreate()
PurefinLogger.initialize(this)
}
}