H:\common\-common-25.2.2\upload.gradle

// Bintray
/*
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream()) bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
println user
println key configurations = ['archives']
pkg {
repo = bintrayRepo
name = bintrayName
desc = libraryDescription
websiteUrl = siteUrl
vcsUrl = gitUrl
licenses = allLicenses
publish = true
publicDownloadNumbers = true
version {
desc = libraryDescription
gpg {
sign = true //Determines whether to GPG sign the files. The default is false
passphrase = properties.getProperty("bintray.gpg.password")
//Optional. The passphrase for GPG signing'
}
}
}
}
*/

H:\common\-common-25.2.2\common-25.2.2\upload.gradle

// Bintray
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
bintray {
    user = properties.getProperty("bintray.user")
    key = properties.getProperty("bintray.apikey")
    println user
    println key
    configurations = ['archives']
    pkg {
        repo = bintrayRepo
        name = bintrayName
        desc = libraryDescription
        websiteUrl = siteUrl
        vcsUrl = gitUrl
        licenses = allLicenses
        publish = true
        publicDownloadNumbers = true
        version {
            desc = libraryDescription
            gpg {
                sign = true //Determines whether to GPG sign the files. The default is false
                passphrase = properties.getProperty("bintray.gpg.password")
                //Optional. The passphrase for GPG signing'
            }
        }
    }
}

H:\common\-common-25.2.2\local.properties

## This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Mon Dec 10 07:59:28 CST 2018
ndk.dir=H\:\\heimaandroidadt\\adt-bundle-windows-x86_64_20140101\\adt-bundle-windows-x86_64_20140101\\sdk\\ndk9d
sdk.dir=H\:\\heimaandroidadt\\adt-bundle-windows-x86_64_20140101\\adt-bundle-windows-x86_64_20140101\\sdk

最新文章

  1. mono for android Json 上传文件
  2. 第五百七十八、九天 how can I 坚持
  3. What to call your Academic Event
  4. BZOJ 1600
  5. Java Performance - 如何调查解决内存问题
  6. 将UIImage保存成JPG或PNG格式存储在本地
  7. FMDB警告Warning: there is at least one open result set around after performing的问题
  8. 关于本地$.get(url,function(data)),异步获取数据
  9. ToString()的浅显解释(转)
  10. Python 内置函数汇总
  11. [Nginx]-外部多端口映射Https443端口配置
  12. GRUB与Linux系统修复(第二版)
  13. 【高速接口-RapidIO】6、Xilinx RapidIO核仿真与包时序分析
  14. c#高级编程第七版 学习笔记 第二章 核心c#
  15. pytest十一:函数传参和 firture 传参数 request
  16. Delphi: TLabel设置EllipsisPosition属性用...显示过长文本时,以Hint显示其全文本
  17. Unity优化----drawcall系列
  18. css选择器(第n个类选择器)的坑
  19. UITouch 的主要方法:
  20. 20155305乔磊2016-2017-2《Java程序设计》第一周学习总结

热门文章

  1. C++纯虚函数实现
  2. 在CodeBlocks上配置OpenGL问题
  3. opencv 学习笔记集锦
  4. JS 隔行变色
  5. loj #6138. 「2017 山东三轮集训 Day4」Right
  6. UVA11178 Morley's Theorem
  7. springboot 自定义属性
  8. vscode: Visual Studio Code 常用快捷键【轉】
  9. window下TortoiseGit的安装和使用
  10. git在windows上的安装和简单使用