无法使用JitPack储存库-Android
作者:互联网
我整天都在尝试使用JitPack将Android库添加到Github.
我做了描述的所有事情:https://jitpack.io/docs/ANDROID/,没有成功.
问题是,当我尝试构建项目时,Android Studio给我消息:
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的示例
标签:android-library,android,jitpack 来源: https://codeday.me/bug/20191026/1936940.html