Any help appreciated..thanks
# android
n
Any help appreciated..thanks
p
have you re-synced the project?
n
yes many times @pawegio
t
Please show us the
build.gradle
for your app module (at least the
dependencies
block)
n
I have this two dependencies
implementation "org.jetbrains.kotlinxkotlinx coroutines core${ktcoroutineVersion}" implementation "org.jetbrains.kotlinxkotlinx coroutines android${ktcoroutineVersion}"
version is : 1.1.0
t
Try running the
androidDependencies
Gradle task :
Copy code
./gradlew app:androidDependencies
Check that
debugCompileClasspath
and
debugRuntimeClasspath
configurations both have
org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.0@jar
.
n
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
Weird, I'm using Android Studio 3.4 and everything works fine. Anyway, good to see your problem solved !