Android 开发通过JitPack发布Android Library

参考android 开发通过JitPack发布Android Library

1、 在项目的build.gradle添加插件android-maven-gradle-plugin

不同的gradle版本对应不同的插件版本

buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.0.2"
        classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

2、配置library的build.gralde

apply plugin: 'com.android.library'

// JitPack Maven
apply plugin: 'com.github.dcendents.android-maven'
// 其中username需要替换为你在github上的用户名
group = 'com.github.username'

3、在Terminal中执行gradlew install 方法

image.png

4、将项目提交到Github

参考git初始化本地仓库,同步到云仓库

5、打开项目的github主页,创建一个Release或Tag

image.png
image.png

成功后如下图


image.png

6、进入jitpack设置与github仓库绑定

Jitpack地址
如果是公开的仓库,直接将你仓库的地址粘贴在这里,然后点击lookup就行了

image.png

然后选择对应的版本点 Get it ,如果Log 对应的是绿色,说明正确。
然后在需要使用的项目中引用即可


image.png

如果你的仓库是私密的,你需要给与jitpack权限即可,看参考博客

你可能感兴趣的:(Android 开发通过JitPack发布Android Library)