我不明白火碱是什么问题?


One or more plugins require a higher Android SDK version.
Fix this issue by adding the following to C:UsersUserAndroidStudioProjectstourandroidappbuild.gradle:
android {
compileSdkVersion 33
...
}

FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:checkDebugAarMetadata'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
> Could not find com.google.android.material:material:<version>.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/google/android/material/material/<version>/material-<version>.pom
- https://repo.maven.apache.org/maven2/com/google/android/material/material/<version>/material-<version>.pom
- https://storage.googleapis.com/download.flutter.io/com/google/android/material/material/<version>/material-<version>.pom
- https://jcenter.bintray.com/com/google/android/material/material/<version>/material-<version>.pom
Required by:
project :app

  • 试题:

使用——stacktrace选项运行以获取堆栈跟踪。使用——info或——debug选项运行以获得更多的日志输出。运行——scan以获得完整的见解。

  • 更多帮助请访问https://help.gradle.org

你的compileSdkVersion是低尝试增加到33来做到这一点:

打开android/app/build。在你的项目中找到Gradle文件,并找到android块。在这个块中,你应该看到一个compileSdkVersion设置。此设置指定构建应用程序的Android SDK的版本。此错误消息指示您需要将此设置更新到更高版本(当前为33)以解决此问题。

android {
compileSdkVersion 33
// Other settings here...
}

和重建你的应用

相关内容

  • 没有找到相关文章

最新更新