File tree 2 files changed +4
-3
lines changed
couchbase-lite/src/jvmCommonMain/kotlin/kotbase
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -97,10 +97,11 @@ dependencies {
97
97
}
98
98
99
99
// work around native compiler and linker warnings in tests
100
+ // duplicate library name: org.jetbrains.kotlinx:kotlinx-serialization-core
100
101
// https://youtrack.jetbrains.com/issue/KT-51110
101
102
// (leave off by default, enable to avoid warnings)
102
103
/*
103
- configurations.all {
104
+ configurations.configureEach {
104
105
resolutionStrategy.eachDependency {
105
106
if (requested.group == "org.jetbrains.kotlinx" && requested.name == "kotlinx-serialization-core") {
106
107
val libs = the<org.gradle.accessors.dm.LibrariesForLibs>()
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ public actual class ReplicatedDocument
22
22
internal constructor (actual: CBLReplicatedDocument ) : DelegatedClass <CBLReplicatedDocument >(actual) {
23
23
24
24
public actual val scope: String
25
- get() = actual.collectionScope
25
+ get() = actual.scope
26
26
27
27
public actual val collection: String
28
- get() = actual.collectionName
28
+ get() = actual.collection
29
29
30
30
public actual val id: String
31
31
get() = actual.id
You can’t perform that action at this time.
0 commit comments