美文网首页
使用gradle引入自己在GitHub写的代码

使用gradle引入自己在GitHub写的代码

作者: qiHuang112 | 来源:发表于2020-01-14 13:58 被阅读0次

准备工作

  • 在github上已有提交代码
  • 一个使用gradle管理包的项目

流程

  • 打包
    首先找到想打包的项目,并点击下图中的release

    然后点击new release,下图展示的在右上角,如果是第一次打包,在中间能够看到。

    Release中填入版本号,如2.0

    然后点击发布即可。
  • 导入项目
    打开项目的build.gradle文件,找到
repositories {
    mavenCentral()
    jcenter()
}

加入仓库maven { url 'https://www.jitpack.io' }

repositories {
    maven { url 'https://www.jitpack.io' }
    mavenCentral()
    jcenter()
}

找到以下代码。并加入自己要引入的github地址

dependencies {
    ...
}

加入后

dependencies {
    ...
    implementation 'com.github.UserName:RepositoryName:Tag'
}

其中,UserName替换成你自己的GitHub IDRepositoryName替换成项目名,Tag替换成版本号
例子:

implementation 'com.github.qiHuang112:LeetCode:1.0'

则引入了我的LeetCode项目代码

相关文章

网友评论

      本文标题:使用gradle引入自己在GitHub写的代码

      本文链接:https://www.haomeiwen.com/subject/yotaactx.html