This is probably a stupid question, but I’m a newbie.
In Android Studio 3.0 Beta 2, I got the message, “Your version of Kotlin runtime in ‘kotlin-stdlib-1.1.4’ library is 1.1.4, while plugin version is 1.1.4-release-Studio3.0-2. Runtime library should be updated to avoid compatibility problems.”
I clicked on “Update Runtime” and I got a message that says something like “Automatic update of gradle files is not supported, please update it manually.”" In the top-level build.gradle file, I changed
ext.kotlin_version = ‘1.1.4’
to
ext.kotlin_version = ‘1.1.4-release-Studio3.0-2’
but now building the app fails with the message
Gradle sync failed: Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.4-release-Studio3.0-2.
and a list of locations where it searched. I switched back to the old value, and I can build the app again.
What, if anything, should I be doing.