1 Star 6 Fork 4

Theone/QMUI-MVVM

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
default.gradle 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
Theone 提交于 2022-08-11 10:23 . 优化积分获取
apply from: "../base.gradle"
// 通用配置
android {
defaultConfig {
multiDexEnabled true
}
applicationVariants.all { variant ->
variant.outputs.all { output -> // each 改为 all
def fileName = "demo_release.apk"
def outFile = output.outputFile
if (outFile != null && outFile.name.endsWith('.apk')) {
outputFileName = fileName // output.outputFile 改为 outputFileName
}
}
}
signingConfigs {
release {
storeFile file("..\\keystore\\theone.jks")
storePassword "areyoutheone"
keyAlias "areyou"
keyPassword "areyoutheone"
}
}
buildTypes {
debug {
debuggable true
minifyEnabled false
signingConfig signingConfigs.release
}
release {
signingConfig signingConfigs.release
minifyEnabled true
// 移除无用的resource文件
shrinkResources true
// Zipalign优化
zipAlignEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation project(path: ':core')
kapt "com.github.liujingxing.rxhttp:rxhttp-compiler:$rxhttpVersion"
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/theoneee/qmui-mvvm.git
git@gitee.com:theoneee/qmui-mvvm.git
theoneee
qmui-mvvm
QMUI-MVVM
master

搜索帮助