Skip to content
This repository was archived by the owner on Dec 16, 2023. It is now read-only.

Commit 1ae47e0

Browse files
committed
Update Kotlin version
1 parent 1e11980 commit 1ae47e0

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

buildSrc/src/main/kotlin/Dependencies.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ object AndroidConfig {
55
}
66

77
object Versions {
8-
val kotlin = "1.3.50"
9-
val coroutines = "1.3.1"
8+
val kotlin = "1.3.70"
9+
val coroutines = "1.3.5"
1010
val material = "1.0.0"
1111
val cardview = "1.0.0"
1212
val legacySupport = "1.0.0"
@@ -32,7 +32,7 @@ object Versions {
3232
const val shimmer = "0.5.0"
3333
const val archCoreTesting = "2.1.0"
3434
const val playServices = "17.0.0"
35-
const val serialization = "0.13.0"
35+
const val serialization = "0.20.0"
3636
const val retrofitSerialization = "0.4.0"
3737
const val places = "2.0.0"
3838
const val sentry = "1.7.27"

core/src/main/java/com/marknjunge/core/utils/JsonConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ import kotlinx.serialization.json.Json
44
import kotlinx.serialization.json.JsonConfiguration
55

66
val JsonConfiguration.Companion.appConfig: Json
7-
get() = Json(JsonConfiguration.Stable.copy(strictMode = false))
7+
get() = Json(Stable.copy(ignoreUnknownKeys = true))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.marknjunge.core.utils
22

3-
import kotlinx.io.IOException
3+
import java.io.IOException
44

55
// Has to be IO exception. See https://stackoverflow.com/a/47058587
66
class NoInternetException : IOException("Check your internet connection")

0 commit comments

Comments
 (0)