Damiano Giusti
kotlin-multiplatform
commonTest { dependencies { implementation "org.jetbrains.kotlin:kotlin-test-common" implementation "org.jetbrains.kotlin:kotlin-test-annotations-common" implementation "io.mockk:mockk-common:1.9" } }
testImplementation
Could not find method testIplementation() for arguments [org.jetbrains.kotlin:kotlin-test-common] on object of type org.jetbrains.kotlin.gradle.plugin.mpp.DefaultKotlinDependencyHandler
implementation
thevery
com.android.library
sourceSets { final def ktorVersion = "1.1.2" final def coroutinesVersion = "1.1.1" final def serializationVersion = "0.10.0" commonMain { dependencies { api "org.jetbrains.kotlin:kotlin-stdlib-common" api "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:$serializationVersion" api "org.jetbrains.kotlinx:kotlinx-coroutines-core-common:$coroutinesVersion" implementation "io.ktor:ktor-client-core:$ktorVersion" implementation "io.ktor:ktor-client-json:$ktorVersion" } } commonTest { dependencies { implementation "org.jetbrains.kotlin:kotlin-test-common" implementation "org.jetbrains.kotlin:kotlin-test-annotations-common" implementation "io.mockk:mockk-common:1.9" } } ...
A modern programming language that makes developers happier.