@msLalith

Results 34 comments of @msLalith

@cmonfortep I can take up Dialogs & Adapters

Seems like [Injecting a list of dependencies](https://insert-koin.io/docs/reference/koin-annotations/definitions#injecting-a-list-of-dependencies---listt) should do. Here the question I have is will this be aggregated over all other modules?

```kotlin interface LoggerDataSource @Single @Named("InMemoryLogger") class LoggerInMemoryDataSource : LoggerDataSource @Single @Named("DatabaseLogger") class LoggerLocalDataSource(private val logDao: LogDao) : LoggerDataSource ``` Let's take the example from docs. Say logging is being kept...

Nothing is shown when I tried enabling debug mode from `SentryPluginExtension`. Lemme check with manifest override

Looks to me that sentry files are also obfuscated. BTW, debug logs are not being shown when enabling from `SentryPluginExtension` but working if added from manifest.

> Are you using self-hosted Sentry or sentry.io? Not self-hosted > Do you set a proper DSN for your release builds? DSN is proper. I can see it in debug...

@romtsn Somehow today I could see crash reports from emulator (release build) but still no luck when tested on real device

> just to make sure, do you restart the app after it crashes? we upload crash reports on restart (to not block the process from termination for too long) and...

@romtsn Found the issue. When DuckDuckGo's App Tracking Protection is enabled, reports are not being sent. For now I disabled this for my launcher. But I feel this should be...