创建gradle依赖项以从git导入

这就是在Android Studio中导入依赖项的方式。在这种情况下,okhttp:

dependencies {

compile 'com.squareup.okhttp:okhttp:2.5.0'

}

我想导入我自己创建的依赖项。例如:

dependencies {

compile 'my_library:1.0.0'

}

在这一点上,如果我学习如何创建依赖关系并在Android Studio项目中导入就足够了。

但是如果可能的话,我想将我的库托管在git(github)仓库中。太棒了

回答:

要实现它,您可以通过以下几种方法:

  1. 在中央Maven或Jcenter中发布您的库(工件)。

  2. 使用github repo和 插件

  3. 在本地Maven存储库中发布aar(本地或私人)

很简单。只需在github中推送您的代码,然后在要使用它的项目中修改gradle脚本即可。

只需将此回购添加到您的 build.gradle

repositories {

// ...

maven { url "https://jitpack.io" }

}

和依赖性:

dependencies {

compile 'com.github.User:Repo:Tag'

}

在Central Maven或JCenter中 库,答案中的解释很长。您可以阅读以下文章:

  • 在JCenter上发布

  • 在Central Maven上发布

以上是 创建gradle依赖项以从git导入 的全部内容, 来源链接: utcz.com/qa/402454.html

回到顶部