publish_config.gradle 943 Bytes
ext {

    isCompany = false//控制是发布到企业账号还是个人账号

    user = isCompany ? "hhmedic" : "hhclient"
    apikey = isCompany ? "6501341d8094b0482a82e3e6eb3b205d2925b194" : "89c96bff0896bb09eb50b53affb8616e18aece15"

    url = "https://www.hh-medic.com"  //整体用到的URL
    groupId = "com.hhmedic.android.sdk" //SDK引用包名
    artifactId = "base_small" //SDK引用ID
    name = "base_small" //描述
    description = "base_small" //描述

    license_name = "The Apache Software License, Version 2.0" //协议名称
    license_url = "http://www.apache.org/licenses/LICENSE-2.0.txt" //协议地址

    developer_id = isCompany ? "hhmedic" : "hhclient" //开发者账号
    developer_name = "hhmedic" //开发者昵称
    email = "liumingming@hh-medic.com" //开发者邮箱

    repo = "maven" //bintray上定义的Repositories

    vcsUrl = "http://code.hh-medic.com/dev-client/hhsdk.android.base.git"
}