我在这里上传了我的图书馆: https://bintray.com/cuipengfei/maven/autoupdateapk
昨天已批准链接到jcenter。
我甚至可以在jcenter中获得搜索结果:https://bintray.com/search?query=autoupdateapk
但是当我在gradle中添加库作为依赖项时,gradle无法找到它:
> Could not resolve all dependencies for configuration ':app:_upgradeDebugCompile'.
> Could not find com.autoupdateapk:autoupdateapk:1.0.3.
Searched in the following locations:
https://jcenter.bintray.com/com/autoupdateapk/autoupdateapk/1.0.3/autoupdateapk-1.0.3.pom
https://jcenter.bintray.com/com/autoupdateapk/autoupdateapk/1.0.3/autoupdateapk-1.0.3.jar
https://maven.fabric.io/public/com/autoupdateapk/autoupdateapk/1.0.3/autoupdateapk-1.0.3.pom
https://maven.fabric.io/public/com/autoupdateapk/autoupdateapk/1.0.3/autoupdateapk-1.0.3.jar
如果我在gradle中添加新存储库:
maven { url 'https://dl.bintray.com/cuipengfei/maven' }
然后它就会起作用。这意味着它已经明显地已经存在,只是没有同步到jcenter。
而且,我可以在这里找到它:http://dl.bintray.com/cuipengfei/maven/com/autoupdateapk/ 但不是这里:http://jcenter.bintray.com/com/autoupdateapk
那么bintray通常需要多长时间才能同步到jcenter?或者我是否错过了阻止二进制文件同步的一些步骤?