当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.gradle 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
LuoWK 提交于 2020-08-13 16:30 . 规范化FileProvider
ext {
plugins = [
maven : 'com.github.dcendents.android-maven',
bintray: 'com.jfrog.bintray'
]
//依次执行:
//gradlew clean install
//gradlew bintrayUpload
bintray = [
version : "1.5.0", // 指定库的版本号
group : "com.lwkandroid", // 库的group名,确定好之后不能修改
libName : 'ImagePicker',// 库的名称
siteUrl : 'https://github.com/Vanish136/ImagePicker', // 项目开源地址
gitUrl : 'https://github.com/Vanish136/ImagePicker.git', // 项目git地址
packaging : 'aar',
description : 'Library for android', // 项目描述,随意
licenseName : 'The Apache Software License, Version 2.0', // 开源协议
licenseUrl : 'http://www.apache.org/licenses/LICENSE-2.0.txt', // 开源协议地址
developerId : 'luo', // 开发者id
developerName : 'wenkang', // 开发者姓名
developerEmail: 'lwk520136@gmail.com', // 开发者邮箱
bintrayRepo : "maven", // 发布到自己在bintray的哪个仓库中,一般默认maven
bintrayUser : 'luowenkang', // bintray的用户名
bintrayLicense: "Apache-2.0" // 指定bintray上的开源协议
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化