如何用最简单的方法发布Android library到jCenter(Bintray)
最初的想法是做一个很简单基础的网络请求的封装作为一个自己常用的网络库(这是另一个故事了), 在这个故事里, 遇到了很多… 意想不到的问题,在此留作记录,希望可以帮助到大家.
不想看太多只想简单操作就完事部分 Bintray 注册(虽然啰嗦, 但是这个不提的话很容易遇到问题的) Bintray注册地址: https://bintray.com/signup/oss 注意这里的地址是有带有oss的,是注册的个人账户
以下是个人注册的页面
以下是组织注册的页面,可以看到需要你填写额外的内容
通过github授权登录就可以了,填写相关的信息就可以了
在上传之前, 我们要先建立一个Repository
Type记得要选择Maven
创建成功后页面显示如下
本地Library Module修改 本地需要修改下面三个文件
项目的gradle文件 加入下面内容
1 2 classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
library内的gradle修改
将下面的内容追加到文件内
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' group = "com.clwater" version = "0.0.1" Properties properties = new Properties ()properties.load(project.rootProject.file('local.properties' ).newDataInputStream()) def bintrayUser = properties.getProperty("bintray.user" )def bintrayKey = properties.getProperty("bintray.apikey" )def siteUrl = 'https://github.com/clwater/BintrayLibrary' def gitUrl = 'https://github.com/clwater/BintrayLibrary.git' def libName = "testlibrary" def javaDocLinks = "https://github.com/clwater" def bintrayRepo = "ClwaterRepository" def bintrayDesc = "Desc" def bintrayUserOrg = "ClwaterRepository" task sourcesJar (type: Jar) { from android.sourceSets.main.java.srcDirs classifier = 'sources' } task javadoc (type: Javadoc) { source = android.sourceSets.main.java.srcDirs classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) options.encoding "UTF-8" options.charSet 'UTF-8' options.author true options.version true options.links javaDocLinks failOnError false } task javadocJar (type: Jar, dependsOn: javadoc) { classifier = 'javadoc' from javadoc.destinationDir } task copyDoc (type: Copy) { from "${buildDir}/docs/" into "docs" } artifacts { archives javadocJar archives sourcesJar } install { repositories.mavenInstaller { pom { project { packaging 'aar' name 'pom project name' description 'pom project escription' url siteUrl licenses { license { name 'The Apache Software License, Version 2.0' url 'http://www.apache.org/licenses/LICENSE-2.0.txt' } } developers { developer { id 'developer id ' name 'developer name ' email 'developer email' } } scm { connection gitUrl developerConnection gitUrl url siteUrl } } } } } bintray { user = bintrayUser key = bintrayKey configurations = ['archives' ] pkg { repo = bintrayRepo name = libName desc = bintrayDesc websiteUrl = siteUrl vcsUrl = gitUrl licenses = ["Apache-2.0" ] publish = true } }
local.properties修改
在这里需要配置下Bintray内的信息
可以通过如下步骤来获取你的api
上传到Bintray 进入项目分别执行以下执行
1 2 ./gradlew install ./gradlew bintrayUpload
成功执行后可以在你的Bintray中看到你刚刚上传的Library
提交到jCenter 可以在页面详情提交到jCenter,不过需要审核才能在默认的情况下引入你的库
那么如果不提交到jCenter中就无法使用了么, 当然不会的,在详情页面还有你自己的仓库maven地址和依赖引入地址,你可以把这些内容配置到你的项目中,就可以使用了
配置完成后就可以直接引用了
一顿操作猛如虎, 问题总比办法多部分(常见问题)
Could not create package ‘xxx/xxx/xxx’: HTTP/1.1 404 Not Found [message:Repo ‘xxx’ was not found]
解决: 需要先在Bintray建立名为xxx的Repository
Could not create version ‘0.1’: HTTP/1.1 401 Unauthorized [message:This resource requires authentication] 解决: 一是local.properties内的名字和api有问题 二是你注册了组织账号,需要额外配置userOrg(值为你注册时填写的组织名称,或者到Bintray中查看也可以找到)
没有dd to JCenter按钮 注册了组织账号, 需要个人账号来
相关代码 相关代码可以在我的GitHub 找到.