Reputation: 5038
I'm new in Android development. I open existing project and get error:
Error:Could not find com.android.support:recyclerview-v7:25.2.0.
Required by:
project :app
Please install the Android Support Repository from the Android SDK Manager.
What do I need to do?
Upvotes: 1
Views: 52
Reputation: 481
click on sdk tools and select support repository click apply and let it download and install once completed. rebuild your project.Android support libs provide backward compatibility and support for newer feature such as recycle view, constraint layout and others.
Upvotes: 1