``` > Cannot find a version of 'org.jetbra...
# multiplatform
k
Copy code
> Cannot find a version of 'org.jetbrains.kotlinx:kotlinx-coroutines-core' that satisfies the version constraints:
           Dependency path 'TelemetrySampleAndroid:app:unspecified' --> 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.2' --> 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2'
           Dependency path 'TelemetrySampleAndroid:app:unspecified' --> 'com.airwatch.act:TelemetryModule:1.0.0' --> 'com.airwatch.act:TelemetryModule-android-debug:1.0.0' --> 'org.jetbrains.kotlinx:kotlinx-coroutines-core:{strictly 1.4.2-native-mt}'
anyone have a workaround for this?
workaround:
Copy code
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.2") {
        exclude group: "org.jetbrains.kotlinx", module: "kotlinx-coroutines-core"
    }
    implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2-native-mt")