Please do not encourage gradle/maven dependencies with no specific version
Created by: palavilli-godaddy
dependencies { repositories { mavenCentral() } compile 'com.sothree.slidinguppanel:library:+' }
This just caused almost 8hrs of downtime for an engineer in our team since you guys released a new 2.0.3 version that doesn't require support-v13 anymore. Since no explicit version # was specified in gradle dependencies, his env picked up 2.0.3 automatically and caused this cryptic build error:
FAILURE: Build failed with an exception.
- What went wrong:
A problem occurred configuring project ':PoyntCopilot'.
Module version com.android.support:support-v13:19.0.1 depends on libraries but is not a library itself
It didn't fail for others because we all had 2.0.2 in our local gradle cache.
I understand we should've used the version number instead of '+' in our gradle dependencies, but I do request you guys to update the readme to either use the latest version number or put a note to use the version number from your releases.
Thanks.