https://kotlinlang.org logo
Title
n

Nav Singh

05/09/2019, 1:21 PM
Any help appreciated..thanks
p

pawegio

05/09/2019, 1:26 PM
have you re-synced the project?
n

Nav Singh

05/09/2019, 1:33 PM
yes many times @pawegio
t

tseisel

05/09/2019, 1:46 PM
Please show us the
build.gradle
for your app module (at least the
dependencies
block)
n

Nav Singh

05/09/2019, 2:50 PM
I have this two dependencies
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${ktcoroutineVersion}" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${ktcoroutineVersion}"
version is : 1.1.0
t

tseisel

05/09/2019, 3:42 PM
Try running the
androidDependencies
Gradle task :
./gradlew app:androidDependencies
Check that
debugCompileClasspath
and
debugRuntimeClasspath
configurations both have
org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.0@jar
.
n

Nav Singh

05/09/2019, 3:44 PM
I found that issue with Android Studio 3.4 , I changed back to Android 3.3.2 and it works
so is this isssue I think with latest version
t

tseisel

05/10/2019, 7:29 AM
Weird, I'm using Android Studio 3.4 and everything works fine. Anyway, good to see your problem solved !