Android Studio Plugin with id 'com.anroid.application' not found的处理

最近在下载Demo运行时遇到Plugin with id ‘com.anroid.application’ not found问题,经查询,在项目module的build.gradle下配置以下代码即可解决。

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
         //填写自己AS的版本号
        classpath 'com.android.tools.build:gradle:2.3.3'
    }
}

你可能感兴趣的:(Android Studio Plugin with id 'com.anroid.application' not found的处理)