This repository was archived by the owner on Dec 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
core/src/main/java/com/marknjunge/core/utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ object AndroidConfig {
55}
66
77object 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"
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ import kotlinx.serialization.json.Json
44import kotlinx.serialization.json.JsonConfiguration
55
66val JsonConfiguration .Companion .appConfig: Json
7- get() = Json (JsonConfiguration . Stable .copy(strictMode = false ))
7+ get() = Json (Stable .copy(ignoreUnknownKeys = true ))
Original file line number Diff line number Diff line change 11package 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
66class NoInternetException : IOException (" Check your internet connection" )
You can’t perform that action at this time.
0 commit comments