I have successfully published my android library on bintray jcenter. I have a repository which has a package which contains two versions, 0.0.1 and 0.0.2. I want to make the 0.0.2 as the latest and default version.
Whenever my library users use the following script to download my library, I want it to download from the latest version always:
compile 'com.userexperior:userexperior-android:+'
I tried in two sample apps, the above script is picking the old version 0.0.1, though I am able to use the latest version 0.0.2 by manually writing it in the gradle script but not via a "+" sign in the gradle script:
compile 'com.userexperior:userexperior-android:0.0.2'
Can anyone from the bintray support team or community guid me to achieve it.