Answers for "plugin with id 'kotlin-android' not found."

0

plugin with id 'kotlin-android' not found.

To use the plugin, you have to add it in your root build.gradle file

buildscript {
ext.kotlin_version = '1.1.60'
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com'
        }
    }

    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}
Posted by: Guest on March-03-2022

Code answers related to "plugin with id 'kotlin-android' not found."

Browse Popular Code Answers by Language