Space-Navigation-View
Space-Navigation-View copied to clipboard
Outdated support library version
The support libraries need to be update to 25.2.0
Thanks
I'd rather you change the support library import in your project to this:
compile ('com.android.support.blahblahblah') {
transitive = false
}
this will eliminate the dependency conflict issue and you won't have to update the library code every time new support library is out.
I've tried the approach below, but it breaks library functionality
implementation ('com.github.armcha:SpaceNavigationView:1.6.0') {
exclude group: 'com.android.support'
}