Error:(1, 0) Plugin with id ‘android’ not found.

Knowledge map advanced must read: read how large-scale map data efficient storage and retrieval>>>

When compiling Android studio, there is an error: error: (1,0) plug in with ID ‘Android’ not found, because the version of Android tools is not defined in the gradle file. Add a statement defining the version in the build.gradle file of the project

classpath 'com.android.tools.build:gradle:1.3.0'

This problem is solved. Note that the build. Gradle file is the

Finally, the complete content of the build. Gradle file is as follows:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
            classpath 'com.android.tools.build:gradle:1.3.0'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

Similar Posts: