Skip to content

Commit 16ab24b

Browse files
committed
bum deps
1 parent e6abade commit 16ab24b

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.idea/kotlinc.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/main/java/com/hoc/flowmvi/App.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ class App : Application() {
2626
startKoin {
2727
androidContext(this@App)
2828

29-
// TODO: Koin
30-
androidLogger(level = Level.NONE)
29+
androidLogger(if (BuildConfig.DEBUG) Level.DEBUG else Level.NONE)
3130

3231
modules(
3332
coreModule,

buildSrc/src/main/kotlin/deps.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import org.gradle.plugin.use.PluginDependenciesSpec
66
import org.gradle.plugin.use.PluginDependencySpec
77

88
const val ktlintVersion = "0.41.0"
9-
const val kotlinVersion = "1.5.0"
9+
const val kotlinVersion = "1.5.10"
1010

1111
object appConfig {
1212
const val applicationId = "com.hoc.flowmvi"
@@ -54,7 +54,7 @@ object deps {
5454
}
5555

5656
object koin {
57-
private const val version = "3.0.1"
57+
private const val version = "3.0.2"
5858

5959
const val core = "io.insert-koin:koin-core:$version"
6060
const val android = "io.insert-koin:koin-android:$version"

0 commit comments

Comments
 (0)