Reputation: 37
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
Reputation: 316
If you want to add any dependencies you can follow with these steps in Android Studio itself.
Upvotes: 1
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