Failed to resolve com.android.support:support-compat:25.4.0



3down votefavorite

I am trying to include this library to my project by adding

compile ‘jp.wasabeef:recyclerview-animators:2.2.7‘

to the dependencies. When the graddle sync happens an error produced like below

Failed to resolve com.android.support:support-recycleriew-v7:25.4.0

Failed to resolve com.android.support:support-core-ui:25.4.0

The graddle dependencies looks like

dependencies {
compile fileTree(dir: ‘libs‘, include: [‘*.jar‘])
compile ‘com.android.support:appcompat-v7:25.3.1‘
compile ‘com.android.support:design:25.3.1‘
compile ‘com.android.support:support-v4:25.3.1‘
compile ‘com.android.support:recyclerview-v7:25.4.0‘
compile ‘com.android.support:cardview-v7:25.3.1‘
compile ‘com.android.volley:volley:1.0.0‘
compile ‘com.fasterxml.jackson.core:jackson-databind:2.8.5‘
compile ‘com.fasterxml.jackson.core:jackson-core:2.8.5‘
compile ‘com.fasterxml.jackson.core:jackson-annotations:2.8.5‘
compile ‘com.android.support:support-core-ui:25.4.0‘
compile ‘com.android.support:support-compat:25.4.0‘
compile ‘jp.wasabeef:recyclerview-animators:2.2.7‘

}

What is wrong here?

android android-gradle android-support-library


shareimprove this question

edited Jul 9 at 17:43

asked Jul 9 at 17:32

Hari Krishnan

1,39311733

 
add a comment

1 Answer

activeoldestvotes


up vote16down voteaccepted

Failed to resolve com.android.support:support-recycleview:25.4.0

There is no library by that name. There is com.android.support:recyclerview-v7:25.4.0.

Failed to resolve com.android.support:support-compat:25.4.0
Failed to resolve com.android.support:support-core-ui:25.4.0

These are in the new Google Maven repo. Add maven { url "https://maven.google.com" } to your repositories closure, as shown in the documentation.


shareimprove this answer

answered Jul 9 at 17:40

CommonsWare

693k11916871732

 

    

it was recyclerview-v7:25.4.0. That was a typing error. and it works now. thanks. – Hari Krishnan Jul 9 at 17:47

add a comment

原文地址:https://www.cnblogs.com/weizhxa/p/8120432.html

时间: 2024-08-28 13:14:04

Failed to resolve com.android.support:support-compat:25.4.0的相关文章

android studio学习----Failed to resolve: com.android.support:design:22.1.1

这个目前好像没有合适的办法,唯一可行的就是 点击那个提示  进行SDK Manager下载就可以了 但是天朝的网啊,我试了很多次,突然的可以下载,运气啊 类似这一系列问题解决办法就是  重新更新SDK吧 failed to resolve com.android.support:appcompat-v7:22 and com.android.support:recyclerview-v7:21.1.2

Failed to resolve: com.android.support:design:25.4.0

韩梦飞沙  韩亚飞  [email protected]  yue31313  han_meng_fei_sha 错误:(27, 13) Failed to resolve: com.android.support:design:25.4.0<a href="install.m2.repo">Install Repository and sync project</a><br><a href="openFile:D:/ka_fa/bi

Error:(24, 13) Failed to resolve: com.android.support:recyclerview-v7:20.+ &lt;a href=&quot;install.m2.repo&quot;

Android studio   报错    Error:(24, 13) Failed to resolve: com.android.support:recyclerview-v7:20.+ <a href="install.m2.repo">Install Repository and sync project</a><br><a href="openFile">Show in File</a><

问题解决-Failed to resolve: com.android.support.constraint:constraint-layout:1.0.0-alpha7

Failed to resolve: com.android.support.constraint:constraint-layout:1.0.0-alpha7     依赖constraintLayout报错 1.原因分析: 使用ConstraintLayout需要在gradle中添加依赖. compile'com.android.support.constraint:constraint-layout:1.0.0-alpha7' clone别人的项目时发现报错误: Failed to res

(转)Android Studio Error:Failed to resolve: com.android.support:appcompat-v7:25.1.0解决方案

今天不知道为什么导入eclipse项目后就出现了错误,没导入之前是正常使用AS的 Error:(26, 13) Failed to resolve: com.android.support:appcompat-v7:25.+ 第一.点击Install Repository . 但是Installing Android Support Repository失败了 当然还是可以在SDK那里进行相应版本的安装API 第二.点击Show in Project Structure dialog 更改自己C

Failed to resolve: com.android.support:appcompat-v7:27.+

问题: 碰到这个 "Failed to resolve: com.android.support:appcompat-v7:27.+"并且多次同步失败,之后网上也查了许多方法还是不行 解决办法: 之后我尝试着里面的把"27"改成"24",然后把 中的"27"也改成"24".之后按着提示重新一步步下载, 最后再重新打开AS就搞定了.

Error:(27, 13) Failed to resolve: com.android.support.constraint:constraint-layout:1.0.2约束布局constraint-layout导入失败的解决方案

运行demo提示错误: Error:(27, 13) Failed to resolve: com.android.support.constraint:constraint-layout:1.0.2是你的androidStudio 要安装插件才可以运行这个包. 详细步骤说: a. 点击Tools>android>SDK Manager b. 点击SDK Tools标签 c.选择show pack details,找到support repository->constraintlayou

Failed to resolve: com.android.support:appcompat-v7:27.0.1问题解决

今天,在毫无征兆的情况下AndroidStudio又抽风了,搞了大半天,试了网上众多方案,终于解决了这个问题.咱们一步一步来 第一步:这是最开始的bug Error:Failed to resolve: com.android.support:support-annotations:27.0.1 Install Repository and sync projectOpen FileShow in Project Structure dialog Error:Failed to resolve:

Android添加百分比布局库时显示Failed to resolve: com.android.support.percent:问题

这是看第一行代码中遇到的问题,要添加百分比布局库的依赖时要在app下的bulid.gradle添加以下代码 implementation fileTree(dir:'libs',include:['*.jar'])implementation 'com.android.support:appcompat-v7:28.0.0'implementation 'com.android.support:percent:28.0.0' testCompile 'junit:junit:4.12' 注意这一