1.在GitHub上新建仓库
2.在本地新建项目,并上传到仓库
3.在项目的 Build.gradle中添加如下
buildscript {
...
dependencies {
...
//添加以下代码,其中版本号应保持最新
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}}
跟
allprojects {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
}
在Lib的Build.gradle文件的第一行添加
apply plugin: 'com.android.library'//这句是原来就有的
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.YourUsername'//替换成你的Github的用户名
4.插件可以通过在Terminal中输入gradlew install安装
5.登录Github发布一个发行版本
6.登录 jitpack.io,输入你的项目地址,点击look up
7.如果Status是Get it,那么恭喜你,发布成功了,点击get it会看到如何使用
如果Status是Report,中间哪个步骤出现了问题,重新来过吧。如果你找不到问题在哪,可以点击Report,将Log提交到jitpack.io的issues,