Couldn't Building Kotlin Project:could Not Resolve All Files For Configuration
I am trying to use Kotlin for first time in Android Studio. I updated Android Studio, but when I tried to build the project, I received the error message posted below. I tried to
Solution 1:
Add this on top of your build.gradle(app)
apply plugin: 'kotlin-android'
and set ext.kotlin_version = '1.2.61'
in project gradle
Post a Comment for "Couldn't Building Kotlin Project:could Not Resolve All Files For Configuration"