Stack Overflow archive
1 scoreaccepted

How to totally clear a Gradle dependency (Android app)

score
1
question views
213
license
CC BY-SA 3.0

Change

java
compile 'com.android.support:design:+'

To

java
compile 'com.android.support:design:24.2.0'

The design library has the recycler view as a dependency. You also have a duplicate AppCompat. Make sure all support library versions are the same.

Originally posted on Stack Overflow. Public user contributions are licensed under Creative Commons Attribution-ShareAlike.