Deprecated Kotlin Runtime

I received this message when I wanted to update kotlin runtime:

Your version of Kotlin runtime in the library "kotlin-stdlib-1.1.2-4" is 1.1.2-4, and the plug-in version is version 1.1.3-release-Studio 3.0-2. The Runtime library needs to be updated to avoid compatibility issues.

Some segment of code that exists in the build.gradle file

ext.kotlin_version = '1.1.2-4'
classpath 'com.android.tools.build: gradle: 3.0.0-alpha8'

Can someone help me solve this problem?

Thanks in advance.

+4
source share
1 answer

Go to your build.gradlefile. Edit

ext.kotlin_version = '1.1.2-4'

to

ext.kotlin_version = '1.1.3-2' 

, build.gradle.

+10

Source: https://habr.com/ru/post/1682598/


All Articles