作者:mobiledu2502896071 | 来源:互联网 | 2023-05-27 10:29
我想在我的项目中编译以下库build.gradle
:
https://github.com/theDazzler/Android-Bootstrap
它是从https://github.com/Bearded-Hen/Android-Bootstrap分叉的,但是存储库中没有文档说明如何包含在项目中.
我试过这样的事情:
compile 'com.theDazzler:androidbootstrap:+'
但gradle失败并显示找不到库的错误.
编辑:任何人都可以分叉和/或发布它吗?
1> Gabriele Mar..:
此分支未在maven中央仓库中发布.
然后你不能使用像这样的导入compile com.theDazzler:androidbootstrap:+
您必须: - 在项目中将此库本地克隆为模块克隆root/module1文件夹中的
https://github.com/theDazzler/Android-Bootstrap/tree/master/AndroidBootstrap文件夹.
root:
module1
build.gradle
app
build.gradle
settings.gradle
更改您的settings.gradle文件
包含':module1'包含':app'
在app/build.gradle文件中,您必须添加:
dependencies {
// Module Library
compile project(':module1')
}
最后,在module1/build.gradle中,您必须检查用于gradle插件的级别.
编辑31/10/2015:
您可以使用另一种方式来添加github项目的依赖项,使用github repo和jitpack插件
在这种情况下你必须添加这个repo tp你的build.gradle
repositories {
// ...
maven { url "https://jitpack.io" }
}
和依赖:
dependencies {
compile 'com.github.User:Repo:Tag'
}
2> Sachin Varma..:
它可以通过使用Jitpack来完成.
步骤1.将JitPack存储库添加到构建文件中
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
步骤2.添加依赖项
dependencies {
compile 'com.github.User:Repo:Tag'
}
例如:compile'com.github.sachinvarma:JcPlayer:0.0.1'