码迷,mamicode.com
首页 > 移动开发 > 详细

android打包生成apk时自定义文件名版本号。自定义项目字段等等

时间:2018-08-16 17:37:16      阅读:405      评论:0      收藏:0      [点我收藏+]

标签:lse   code   自定义   pes   proguard   rod   release   版本号   ctf   

早期的AS2.0版本左右中这样配置:

app---->build.gradle中设置

applicationVariants.all { variant ->
        variant.outputs.each { output ->
            def outputFile = output.outputFile
            if (outputFile != null && outputFile.name.endsWith(‘.apk‘)) {
                def fileName = "driver_${variant.productFlavors[0].name}_v${defaultConfig.versionName}.apk"
                output.outputFile = new File(outputFile.parent, fileName)
            }
        }
    }

在3.0之后用以下配置:

buildTypes {
        debug{
            //修改debug状态
            buildConfigField "boolean", "IS_DEBUG", "true"
            android.applicationVariants.all { variant ->
                variant.outputs.all {
                    outputFileName = "${appName}_${variant.versionName}_debug.apk"
                }
            }
        }

        release {
            //修改debug状态
            buildConfigField "boolean", "IS_DEBUG", "true"
            minifyEnabled false
            proguardFiles getDefaultProguardFile(‘proguard-android-optimize.txt‘), ‘proguard-rules.pro‘
            android.applicationVariants.all { variant ->
                variant.outputs.all {
                    outputFileName = "${appName}_${variant.versionName}_release.apk"
                }
            }

        }
    }

  

debug字段也自定义项目字段

android打包生成apk时自定义文件名版本号。自定义项目字段等等

标签:lse   code   自定义   pes   proguard   rod   release   版本号   ctf   

原文地址:https://www.cnblogs.com/loaderman/p/9488360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!