Failed to execute command com.android.support:support-compat:25.4.0

I am trying to include this in my project by adding

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

      

to dependencies. When the graddle sync happens with the error generated as below

Failed to execute command com.android.support:support-recycleriew-v7:25.4.0

Failed to execute command com.android.support:support-compat:25.4.0

Failed to execute command com.android.support:support-core-ui:25.4.0

The graddle dependencies look 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's wrong here?

+3


source to share


1 answer


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

      

There is no library with this 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

      

They are in the new Google Maven repository. Add maven { url "https://maven.google.com" }

to your closure repositories

as shown in the documentation .

+16


source







All Articles