android {
buildTypes {
release {
signingConfig signingConfigs.release
debuggable false // 不可调试
zipAlignEnabled true // zipalign 优化,minifyEnabled = true 时生效
shrinkResources true // 删除没有用到的资源,minifyEnabled = true 时生效
minifyEnabled true // 开启混淆
// 混淆规则
proguardFiles getDefaultProguardFile(‘proguard-android-optimize.txt’), ‘proguard-rules.pro’
}
// 自定义编译类型,注意一旦添加自定义编译类型,则所有被引用的 module 都要添加,否则导致除 debug 外其他编译类型无法打包
pre.initWith(release) // 以 release 为模板
pre {
debuggable true
}
}
}
关于自定义编译类型
- 注意一旦添加自定义编译类型,则所有被引用的 module 都要添加,否则导致除 debug 外其他编译类型无法打包
关于混淆,有个自定义混淆
- 目的:作为 SDK 时,有些内容即便是 app 打包也不能混淆 SDK 里面的内容。为了防止 app 集成时没有添加混淆规则导致的某些问题(如类找不到等),可以采用以下方式解决
- 优点:使用该方式自定义混淆规则,可以使 app 打包时自动应用 aar 中自带的 proguard 文件,这样就不用让 app 额外添加混淆规则
添加文件:项目目录/build.gradle
android {
defaultConfig {
// 自定义混淆规则(SDK 用)
consumerProguardFiles ‘consumer-rules.pro’
}
}
修改输出 apk 的目录与名称,以及复制 apk 到指定目录
添加内容:项目目录/build.gradle
android {
// 修改输出 apk 的目录与名称,以及复制 apk 到指定目录
applicationVariants.all { variant ->
// 修改输出目录:一般不修改,防止 Studio 直接运行报到不到文件错误
// File outDir = new File(project.buildDir, “outputs/apk”)
// def artifact = variant.getPackageApplicationProvider().get()
// artifact.outputDirectory = outDir
//
// println “\n输出 apk 目录:” + outDir.getAbsolutePath()
// 修改输出 apk 文件名
variant.outputs.all {
String now = new Date().format(“yyyy-MM-dd”, TimeZone.getDefault())
outputFileName = “ p r o j e c t . n a m e − v {project.name}-v project.name−v{versionName}- v a r i a n t . f l a v o r N a m e − {variant.flavorName}- variant.flavorName−{variant.buildType.name}-${now}.apk”
println “输出 apk 名称:” + outputFileName
}
// 复制输出 apk 到指定文件夹
variant.assemble.doLast {
File outDir = new File(project.buildDir, “outputs/apk”)
variant.outputs.forEach { file ->
copy {
from file.outputFile
into outDir
// rename {
// String fileName -> “ p r o j e c t . n a m e