Could not determine the dependencies of task ':Demo:compileDebugJavaWithJavac'. > Failed to find Build Tools revision 30.0.0
时间: 2024-03-10 08:39:29 浏览: 152
Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: No outputs for
5星 · 资源好评率100%
这个错误提示是因为在编译 Debug 版本的 Java 代码时,找不到 Build Tools 版本为 30.0.0 的依赖。解决方法是在项目的 build.gradle 文件中添加对应版本的 Build Tools 依赖,例如:
```
android {
buildToolsVersion "30.0.0"
// other configurations
}
```
阅读全文