Update Android Studio Project To Kotlin 1.3
I am attempting to Use Kotlin Coroutine's runBlocking function, but I receive the error that this method was introduced in Kotlin 1.3. So, I tried updating my Android Studio projec
Solution 1:
I guess it has different version. Try to use:
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.0'
Post a Comment for "Update Android Studio Project To Kotlin 1.3"