加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build-library-android-publish.gradle 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
ezy 提交于 2021-12-30 10:08 . #
apply plugin: 'maven-publish'
// apply plugin: "com.jfrog.bintray"
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
group=LIBRARY_GROUP
version=hasProperty("LIBRARY_VERSION_$name") ? getProperty("LIBRARY_VERSION_$name") : LIBRARY_VERSION
archivesBaseName=name
println(" =====>>>>> $group:$archivesBaseName:$version")
android {
compileSdkVersion versions.sdk_compile
buildToolsVersion versions.sdk_build
defaultConfig {
minSdkVersion versions.sdk_min
targetSdkVersion versions.sdk_target
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
buildConfig false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
api "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
// bintray {
// user = BINTRAY_USER
// key = BINTRAY_KEY
// publications = ['library'] // 指定出版物
// publish = true
//
// pkg {
// repo = "repo" // 发布到 Bintray 上的仓库名
// name = "$group:$archivesBaseName" // 发布到 Bintray 上的项目名
// licenses = ['Apache-2.0']
// vcsUrl = 'https://github.com/czy1121'
// }
// }
afterEvaluate {
publishing {
publications {
library(MavenPublication) {
from components.release
}
}
repositories {
maven {
url = LOCAL_REPO_PATH
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化