12 lines
414 B
Groovy
12 lines
414 B
Groovy
apply plugin: 'com.novoda.bintray-release'
|
|
|
|
//添加
|
|
publish {
|
|
userOrg = 'jenly'//bintray.com用户名
|
|
groupId = 'com.king.keyboard'//jcenter上的路径
|
|
artifactId = 'kingkeyboard'//项目名称
|
|
publishVersion = app_version.versionName//版本号
|
|
desc = 'KingKeyboard for Android'//描述
|
|
website = 'https://github.com/jenly1314/KingKeyboard'//网站
|
|
licences = ['MIT']//开源协议
|
|
} |