gpt4 book ai didi

Android Gradle 错误 : Could not download library-1. 8.aar (com.nbsp :library:1. 8)

转载 作者:行者123 更新时间:2023-12-04 07:36:09 25 4
gpt4 key购买 nike

我突然收到了这个错误:

Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not download library-1.8.aar (com.nbsp:library:1.8)
Show Details
Affected Modules: app
这是我的应用程序 gradle 文件:
android {
compileSdkVersion 30
defaultConfig {
applicationId "..."
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dependencies {
implementation 'com.nbsp:library:1.8'
implementation 'com.android.volley:volley:1.2.0'
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.android.material:material:1.3.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
昨天它运行良好,但今天当我打开 Android Studio 时,出现此错误。
我已经搜索过,但没有找到解决方案。我不知道为什么它会向我显示这个,“显示详细信息”链接也不起作用。

最佳答案

这似乎对我有用:我替换了

implementation 'com.nbsp:library:1.8'
implementation 'com.nbsp:materialfilepicker:1.9.1'
library:1.8 被 MaterialFilePicker 使用,但是当我去他们的 github 时,我看到他们用 materialfilepicker:1.9.1 改变了它
而且我还必须在 gradle 文件中添加以下 compileOption:
android {
.....................
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
}
还有 Build-> 清洁工程然后 重建项目

关于Android Gradle 错误 : Could not download library-1. 8.aar (com.nbsp :library:1. 8),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67730333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com