VolleyPlus
VolleyPlus copied to clipboard
Could not resolve dev.dworks.libs:volleyplus:+
Unable to resolve dependency for ':RunSoft.SmartCitySys@rsspcyDebug/compileClasspath': Could not resolve dev.dworks.libs:volleyplus:+.
Could not resolve dev.dworks.libs:volleyplus:+. Required by: project :RunSoft.SmartCitySys
Could not resolve dev.dworks.libs:volleyplus:+. > Failed to list versions for dev.dworks.libs:volleyplus. > Unable to load Maven meta-data from https://jcenter.bintray.com/dev/dworks/libs/volleyplus/maven-metadata.xml. > Could not HEAD 'https://jcenter.bintray.com/dev/dworks/libs/volleyplus/maven-metadata.xml'. > sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target > PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target > unable to find valid certification path to requested target
do you have this part in your build.gradle file? In the project level gradle file?
buildscript {
repositories {
jcenter()
}
}
try unchecking the "offline work" gradle settings
jcenter is going away...
do you have this part in your build.gradle file? In the project level gradle file?
buildscript { repositories { jcenter() } }
Yeah I have this in my project level gradle file
Have you got any solution ?
@IDFDeveloper
Have you tried specifying the version instead of using the + ? It's possible the + is no longer aceeptable.
This worked for me.
implementation 'dev.dworks.libs:volleyplus:0.1.4'