fix(source-api): workaround to recognise commonMain package

This commit is contained in:
LuftVerbot 2023-07-25 10:21:47 +02:00 committed by GitHub
parent 88cff99c8b
commit e6e345f798
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,6 +19,10 @@ kotlin {
dependencies {
implementation(project(":core"))
api(libs.preferencektx)
// Workaround for https://youtrack.jetbrains.com/issue/KT-57605
implementation(kotlinx.coroutines.android)
implementation(project.dependencies.platform(kotlinx.coroutines.bom))
}
}
}