Support blocks instead of flags for kotlin serialization in Android

pull/1445/head
Tom Tresansky 1 year ago
parent 884f9f4099
commit 4526c5d1d4
No known key found for this signature in database
GPG Key ID: 99DCF7A2C0C53E39

@ -1,7 +1,6 @@
androidLibrary {
namespace = "com.google.samples.apps.nowinandroid.core.data"
includeKotlinSerialization = true
configureJacoco = true
dependencies {
@ -19,6 +18,11 @@ androidLibrary {
testImplementation(project(":core:network"))
}
kotlinSerialization {
version = "1.6.3"
json()
}
testOptions {
includeAndroidResources = true
returnDefaultValues = true

@ -162,7 +162,7 @@ firebase-perf = { id = "com.google.firebase.firebase-perf", version.ref = "fireb
gms = { id = "com.google.gms.google-services", version.ref = "gmsPlugin" }
hilt = { id = "com.google.dagger.hilt.android" }
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm" }
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization" }
ksp = { id = "com.google.devtools.ksp" }
module-graph = { id = "com.jraska.module.graph.assertion", version.ref = "moduleGraph" }
protobuf = { id = "com.google.protobuf", version.ref = "protobufPlugin" }

Loading…
Cancel
Save