Could Not Resolve Com.android.support:recyclerview-v7:26.1.0
In my app I am using RecyclerView for that I have added the dependency file in the Gradle after that I can't run my project because of the error I have put in the title. Gradle app
May be because you forgot to add buildToolsVersion
.
Like
compileSdkVersion 27
buildToolsVersion "27.0.1"
Also it seems looking design dependency
added twice so remove that define it once only.
implementation 'com.android.support:design:26.1.0'
Post a Comment for "Could Not Resolve Com.android.support:recyclerview-v7:26.1.0"