我整天都试图用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
如果有人知道我应该检查什么,请告诉我。
抱歉我的英文:)
答案 0 :(得分:3)
发布“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 repo。
allprojects {
repositories {
jcenter()
maven {
url "https://jitpack.io"
}
}
}
您可以阅读一些描述how to use JitPack to include libraries in your projects
的示例答案 1 :(得分:1)
我找到了解决方案!
感谢cricket_007获取有关JitPack构建日志的信息:)
答案 2 :(得分:0)
main build.gradle文件应该包含:
allprojects {
repositories {
jcenter()
maven {
url "https://jitpack.io"
}
}
}
您可以在此处查看一个有效的示例:https://github.com/matoelorriaga/pokemon-mvp/blob/master/build.gradle