jcenter

标签: jcenter

通过gradle上传android library到jcenter

教程:http://blog.csdn.net/u013308121/article/details/46360703#plain 有些需要注意的地方 其中之一就是上一篇文章,不要把需要上传的library取名为library 传送门:Android上传开源库到jcenter的一些经验教训 1.如果报错如下: No value has been specified for property ‘packageName’. // load properties Properties properties = new Properties() File localPropertiesFile = project.file("local.properties"); if(localPropertiesFile.exists()){ properties.load(localPropertiesFile.newDataInputStream()) } File projectPropertiesFile = project.file("project.properties"

阅读全文...

Android上传开源库到jcenter的一些经验教训

把库成功上传到jcenter后(上传过程下篇文章介绍),出现了一个很奇怪的问题,明明成功上传,为什么在代码中应用报错了? gradle 引用代码 compile ‘com.apkfuns.logutils:library:1.0.0’ 报错的内容 Error:(63, 13) Failed to resolve: com.apkfuns.logutils:library:1.0.0 但是我确定jcenter已经上传成功,在jcenter库中能看到详细信息。 http://jcenter.bintray.com/com/apkfuns/logutils/library/1.0.0/   尝试了各种方法,比如在最后加上@aar之类的各种方法都没用 最后公司导师提示,才想到可能maven-metadata.xml和library-1.0.0.

阅读全文...