gpt4 book ai didi

java - 错误:无法解决:com.android.support:support-v4:26.1.0

转载 作者:行者123 更新时间:2023-12-03 06:30:03 26 4
gpt4 key购买 nike

我几乎尝试了一切。没有任何帮助。当我添加这个lib compile 'com.github.bassaer:chatmessageview:1.10.0'时,它给出了类似Error:Failed to resolve: com.android.support:support-v4:26.1.0的错误。

这是我的gradle文件

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "com.supportop"
minSdkVersion 17
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile('io.github.sac:SocketclusterClientJava:1.7.4') {
exclude group: 'org.json', module: 'json'
}
compile 'com.github.bassaer:chatmessageview:1.10.0'
testCompile 'junit:junit:4.12'
}

如您所见,我正在使用版本25.3.1,所以当我删除lib compile 'com.github.bassaer:chatmessageview:1.10.0'时,问题消失了。我在这里可以做什么?使捕获无效,重建项目和清理项目无济于事。

Here the image

最佳答案

正如Google所建议的,最好使用最新版本的BuildToolsCompileSDKsupportLibraries升级到较新的android版本。

但是,如果您确实需要使用此特定版本的支持库,则可以删除 chatmessageview 具有以下功能的可传递依赖项:

compile ('com.github.bassaer:chatmessageview:1.10.0'){
exclude group: 'com.android.support', module:'appcompat-v7'
}

但是请记住,该库可能有充分的理由使用更高版本的supportLibs。干杯!

关于java - 错误:无法解决:com.android.support:support-v4:26.1.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49977820/

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