The minCompileSdk (33) specified in a dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties) is greater than this module's compileSdkVersion (android-30). Dependency: androidx.appcompat:appcompat-resources:1.6.1. AAR metadata file: C:\Users\蜡笔小头\.gradle\caches\transforms-2\files-2.1\ebd20b5a28bc3b74e8a57672dbbd6379\jetified-appcompat-resources-1.6.1\META-INF\com\android\build\gradle\aar-metadata.properties.
时间: 2023-07-21 15:55:47 浏览: 3474
这个错误是因为你的项目使用的 `compileSdkVersion` 是 30,而其中一个依赖库 `androidx.appcompat:appcompat-resources:1.6.1` 中的 `minCompileSdk` 版本是 33,两者不兼容导致的。要解决这个问题,你需要将项目的 `compileSdkVersion` 提升到 33 或更高版本,或者将依赖库版本降低到支持 30 版本的版本。你可以在项目的 `build.gradle` 文件中进行修改。
相关问题
ERROR Failed to compile with 1 errors 下午4:49:18 This dependency was not found: * @/views/base/sso/sso-login-types.vue in ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/login/index.vue?vue&type=script&lang=js& To install it, you can run: npm install --save @/views/base/sso/sso-login-types.vue
It seems like there is a missing dependency in your project. The file `sso-login-types.vue` is not found in the `@/views/base/sso/` directory. To resolve this issue, you can try running the following command to install the missing dependency:
```
npm install --save @/views/base/sso/sso-login-types.vue
```
Make sure you have the correct package name and version specified in your `package.json` file.
The specified Gradle distribution 'https://services.gradle.org/distributions/gradle-7.2.0-bin.zip' does not exist. 是什么错误
这个错误通常表示 Gradle 在指定的分发路径上找不到对应的版本。可能有几个原因导致这个问题:
1. Gradle 版本号错误:请确保使用的 Gradle 版本号是有效的。你可以在 `https://services.gradle.org/distributions/` 上查看可用的版本列表。
2. 网络连接问题:如果你无法访问 `https://services.gradle.org/distributions/`,可能是你的网络连接有问题。请确保你的网络连接正常,并且能够访问该 URL。
3. Gradle 服务器问题:有时候 Gradle 服务器可能会遇到问题,导致无法访问特定版本的分发文件。你可以尝试等待一段时间后再次尝试,或者尝试使用其他镜像站点。
如果以上方法都没有解决问题,你可以尝试手动下载 Gradle 分发文件并将其放置在指定的路径中。
阅读全文