创建一个从git导入的gradle依赖项

时间:2015-10-10 12:06:19

标签: java android git android-studio android-gradle

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

dependencies {
    compile 'com.squareup.okhttp:okhttp:2.5.0'
} 

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

dependencies {
    compile 'my_library:1.0.0'
}

此时如果我学习如何创建依赖项并在Android Studio项目中导入就足够了。

但是如果可能的话,我想在git(github)存储库上托管我的库。这太棒了。

1 个答案:

答案 0 :(得分:4)

要实现这一目标,你有一些方法:

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

  2. 使用github repo和jitpack plugin

  3. 在当地的maven回购中发布aar(本地私有)

  4. 第2点。非常简单。只需按下你的codein github并修改你想要使用它的项目中的gradle脚本。

    只需将此代表添加到您的build.gradle

    即可
    repositories {
            // ...
            maven { url "https://jitpack.io" }
        }
    

    和依赖:

    dependencies {
            compile 'com.github.User:Repo:Tag'
        }
    

    要在Central Maven或JCenter中发布库,在答案中解释很长。 Hovewer你可以阅读这些帖子: