Loading app-common/build.gradle.kts +4 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,10 @@ plugins { android { namespace = "net.thunderbird.app.common" buildFeatures { buildConfig = true } } dependencies { Loading app-common/src/main/kotlin/net/thunderbird/app/common/core/AppCommonCoreModule.kt +2 −1 Original line number Diff line number Diff line package net.thunderbird.app.common.core import net.thunderbird.app.common.BuildConfig import net.thunderbird.core.logging.DefaultLogger import net.thunderbird.core.logging.LogLevel import net.thunderbird.core.logging.LogSink Loading @@ -11,7 +12,7 @@ import org.koin.dsl.module val appCommonCoreModule: Module = module { single<LogLevel> { LogLevel.INFO if (BuildConfig.DEBUG) LogLevel.VERBOSE else LogLevel.INFO } single<List<LogSink>> { Loading Loading
app-common/build.gradle.kts +4 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,10 @@ plugins { android { namespace = "net.thunderbird.app.common" buildFeatures { buildConfig = true } } dependencies { Loading
app-common/src/main/kotlin/net/thunderbird/app/common/core/AppCommonCoreModule.kt +2 −1 Original line number Diff line number Diff line package net.thunderbird.app.common.core import net.thunderbird.app.common.BuildConfig import net.thunderbird.core.logging.DefaultLogger import net.thunderbird.core.logging.LogLevel import net.thunderbird.core.logging.LogSink Loading @@ -11,7 +12,7 @@ import org.koin.dsl.module val appCommonCoreModule: Module = module { single<LogLevel> { LogLevel.INFO if (BuildConfig.DEBUG) LogLevel.VERBOSE else LogLevel.INFO } single<List<LogSink>> { Loading