fix: further fixes for fdroid json fallbacks (#3847)

This commit is contained in:
Mac DeCourcy 2025-11-28 18:00:36 -08:00 committed by GitHub
parent 5a413d07e3
commit 923624fbfa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 39 additions and 9 deletions

View file

@ -31,7 +31,8 @@ import javax.inject.Inject
class FdroidPlatformAnalytics @Inject constructor() : PlatformAnalytics {
init {
// For F-Droid builds we don't initialize external analytics services.
// In debug builds we attach a DebugTree for convenient local logging.
// In debug builds we attach a DebugTree for convenient local logging, but
// release builds rely on system logging only.
if (BuildConfig.DEBUG) {
Timber.plant(Timber.DebugTree())
Timber.i("F-Droid platform no-op analytics initialized (DebugTree planted).")