hicham outaleb
hicham outaleb

Reputation: 37

Error:Failed to resolve: com.android.support:recyclerview-v7:26.0.2

The error message says:

Error:Failed to resolve: com.android.support:recyclerview-v7:26.0.2

and

Error:Failed to resolve: com.android.support:support-v4:26.0.2

How do I resolove this?

Upvotes: 0

Views: 984

Answers (2)

Lokesh
Lokesh

Reputation: 316

If you want to add any dependencies you can follow with these steps in Android Studio itself.


Step:1
enter image description here


Step:2 enter image description here
Step:3 enter image description here

Upvotes: 1

Akhil Yeluri
Akhil Yeluri

Reputation: 21

Just add this to your build. Gradle file and it should work fine

compile 'com.android.support:recyclerview-v7:26.0.0' 

Upvotes: 0

Related Questions