Android 提交项目到jitpack

记一次提交项目到jitpack,按正常逻辑是
1.上传项目至github
2.添加release
3.jitpack.io去get it

流程图如下:
项目提交到github后,去创建一个release版本


image.png

点击添加Release版本,填写版本号、标题、描述


添加release

jitpack点击get it,log图标绿色是成功,红色是报错


jitpack.io添加成功

步骤可以说是非常简洁了,但是就这几步骤,却从昨天下午就开始难住了我,
jitpack.io上一直打包不成功。

1.查看版本库对应

第一步看报错信息,log报错提示Minimum supported Gradle version is 5.4.1.

> Failed to apply plugin [id 'com.android.library']
   > Minimum supported Gradle version is 5.4.1. Current version is 4.8. If using the gradle wrapper, try editing the distributionUrl in /home/jitpack/build/gradle/wrapper/gradle-wrapper.properties to gradle-5.4.1-all.zip

就是提示项目最少支持5.4.1,但是我使用的4.8。
这里我们需要去检查项目下build.gradle使用的插件版本和/gradle/wrapper/gradle-wrapper.properties文件所使用的版本。

放一张版本对比图,最新的版本可以去google官网查看gradle插件对应版本

gradle插件版本

build.gralde使用3.5.0-3.5.3

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
    }
}

/gradle/wrapper/gradle-wrapper.properties文件中使用的为5.4.1

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

2.使用android-maven-gradle-plugin

检查发现项目对应的版本没错,找到其他文章说使用android-maven-gradle-plugin插件来解决
首先继续到官网查找版本对应库android-maven-gradle-plugin版本对应库

android-maven-gradle-plugin版本对应

看到最新版为2.1支持gradle4.6以上,我们在项目的build.gradle中添加依赖如下

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
    }
}

在module的build.gradle中添加

apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven' //帮你发布到jcenter
group="com.github.xxxx"//xxxx为你的用户名

到这里我们在去尝试打包发布,失败,报错信息相同!!!

3.全局忽略文件夹.gitignore_global

继续查找发现github提交的里面具体无/gradle/wrapper/文件夹
这是个什么坑,我再次新建了一个新的项目查看原因发现项目创建时添加了默认的ignore配置,为.gitignore_global,这是个全局的忽略配置。全局配置中忽略了/gradle/wrapper/文件夹

window的文件路径是C:\Users\xxxx.gitignore_global
mac该文件的路径为/Users/xxx/.gitignore_global

当时创建该配置信息是在公司为了方便拉取代码,当然我也无权创建新项目,谁能想到我自己还去开源,就是如此的安逸且枯燥啊!!
为了防止该问题继续发生,直接删除了全局配置,然后直接去修改androidstudio生成新项目所使用ignore模板,这样直观的查看文件是否被忽略
mac修改路径为

/Applications/Android Studio.app/Contents/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root

window修改路径为

Android Studio安装目录/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root

我们去修改project_ignore文件,给出github上的gitignore模板,按需要自行修改。我们保存好后重启即可。

# Built application files
*.apk
*.aar
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/
#  Uncomment the following line in case you need and you don't have the release build type files in your app
# release/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# IntelliJ
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml

# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/

# Google Services (e.g. APIs or Firebase)
# google-services.json

# Freeline
freeline.py
freeline/
freeline_project_description.json

# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/

到这里我重新关联git,再去提交就可以生成了!

你可能感兴趣的:(Android 提交项目到jitpack)