欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android Studio 中碰到的异常问题记录~

程序员文章站 2022-04-24 14:33:19
...

1、Plugin with id 'com.android.application' not foun

这个错误是build.gradle造成的,我们打开build.gradle文件,看看有没有buildscript{}(应该是没有的,因为就是没有这个东西才报错的

buildscript {
    repositories {
        mavenCentral()
        google()
        maven { url "https://maven.google.com" }
        jcenter()
    }
    dependencies {
        //注意:更换成自己的AS的版本
        classpath 'com.android.tools.build:gradle:3.1.3'
    }
}

 把这个粘贴进去,点同步,错误应该消失了。

2、Unable to sccess Android sdk add-on list ?

    在 Android Studio 安装目录 bin/idea.properties 文件最后追加一句
    disable.android.first.run=true

3、 

转载于:https://my.oschina.net/Forever2019/blog/3025079