我在尝试运行 flutter 应用程序时遇到以下错误
Execution failed for task ':app:checkDebugAarMetadata'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
> Could not find com.github.umair13adil:RxLogs:1.0.20.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/github/umair13adil/RxLogs/1.0.20/RxLogs-1.0.20.pom
- https://jcenter.bintray.com/com/github/umair13adil/RxLogs/1.0.20/RxLogs-1.0.20.pom
- https://repo.maven.apache.org/maven2/com/github/umair13adil/RxLogs/1.0.20/RxLogs-1.0.20.pom
- https://storage.googleapis.com/download.flutter.io/com/github/umair13adil/RxLogs/1.0.20/RxLogs-1.0.20.pom
- https://jitpack.io/com/github/umair13adil/RxLogs/1.0.20/RxLogs-1.0.20.pom
Required by:
project :app > project :flutter_logs
我已经尝试过了
删除 pubspec.lock 文件,
运行flutter干净,
运行 flutter pub get。
更改版本为 android/buildgradle 中的类路径“com.google.gms:google-services:4.3.8”
您可以做的一些事情:
如果 RxLogs 软件包在 pub.dev 上不可用,您可能需要手动安装它。这涉及将存储库 URL 和依赖项信息添加到您的 build.gradle 文件中:
repositories {
mavenCentral()
// Add the repository URL for RxLogs here if it's not on pub.dev
}
dependencies {
implementation 'com.github.umair13adil:RxLogs://The_version'
}
如果您使用 JitPack 来解决依赖关系,请确保将 jitpack.io 存储库添加到您的 build.gradle 文件的存储库部分下。 在你的 android/build.gradle (项目级别)中:
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
希望有帮助