1.新建项目demo
2.新建module file -> new ->new module -> 选择android library -> 输入名字 ->finish
3.在build.gradle (Project)中
dependencies {
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
4.在新建build.gradl(module)中
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.wangyongyue' //注意com.github.后面的为github账号
5.在新建module中新建一个public class上传githup
6.在githup上选择release新建版本号发布
7.在https://jitpack.io 注册登录,search 项目,找到对应的版本号get,然后会告诉你如何使用
8.在module(app)中无法访问新的module的公共类,需要在build.gradle (app)中添加
dependencies {
implementation project(':module')
}