Android Studio 编译错误

这里写自定义目录标题

  • Android Studio 编译错误

Android Studio 编译错误

  1. Cause:org.jetbrains.plugins.gradle.tooling.util.ModuleComponentIdentifierImpl…getModuleIdentifier()
    错误原因:gradle 版本问题,降低gradle 版本或者升级AndroidStudio 版本。
    例如 Android Studio 版本3.1.3,grade 版本3.5.2就会报错。修改方法:升级Android Studio 版本到3.5.2 以上,或者修改build.gradle 为 classpath ‘com.android.tools.build:gradle:3.1.3’ ,同时修改 gradle-wrapper.properties 为distributionUrl=https://services.gradle.org/distributions/gradle-4.4-all.zip

  2. Error: Please select Android SDK
    app不能运行,点击Edit configuration 提示此错误。
    错误原因:build.gradle 里面未添加buildToolsVersion ,添加buildToolsVersion ‘28.0.1’ 即可。

  3. A problem occurred configuring root project ‘My Application’.
    Could not resolve all files for configuration ‘:classpath’.
    Could not download kotlin-stdlib.jar (org.jetbrains.kotlin:kotlin-stdlib:1.3.0)
    Could not get resource ‘https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib/1.3.0/kotlin-stdlib-1.3.0.jar’.
    Read timed out
    错误原因:无法下载classpath里的内容。访问 https://dl.google.com/dl/android/maven2/ 看到 404. That’s an error.
    That’s all we know. 是maven库无法访问。

Build, Execution, Deployment - Gradle - Android Studio
Enable embedded Maven repository 勾选。

你可能感兴趣的:(Android基础,android,android,studio,java)