我整天都在尝试使用JitPack将Android库添加到Github.
我做了描述的所有事情:https://jitpack.io/docs/ANDROID/,没有成功.
问题是,当我尝试构建项目时,AndroID Stu@R_404_6901@给我消息:
Error:(47, 13) Failed to resolve: com.github.linean:btleuart:v1.0.0
这是我的仓库:https://github.com/linean/btleuart
如果有人知道我该怎么办,请告诉我.
对不起我的英语不好 :)
解决方法:
版本“ v1.0.0”不存在.版本名称为“ 1.0.0”.因此,在您的应用程序或库gradle文件中,替换
compile 'com.github.linean:btleuart:v1.0.0'
通过
compile 'com.github.linean:btleuart:1.0.0'
此外,请确保已在根gradle文件中包含JitPack存储库.
allprojects { repositorIEs { jcenter() maven { url "https://jitpack.io" } }}
您可以阅读一些描述how to use JitPack to include libraries in your projects的示例
总结以上是内存溢出为你收集整理的无法使用JitPack储存库-Android全部内容,希望文章能够帮你解决无法使用JitPack储存库-Android所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)