zoukankan      html  css  js  c++  java
  • android打包生成apk时自定义文件名版本号。自定义项目字段等等

    早期的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字段也自定义项目字段
  • 相关阅读:
    SAP ABAP Development Tools in Eclipseのセットアップ
    SET UPDATE TASK LOCAL (ローカル更新 )
    SEARCH(文字の検索)
    OVERLAY(文字の上書き)
    ULINE(插入水平线)
    SKIP(插入空行)
    NO-ZERO(空格补全)
    CONVERT TEXT(转换为可排序格式)
    递归获取子节点
    生活小记
  • 原文地址:https://www.cnblogs.com/loaderman/p/9488360.html
Copyright © 2011-2022 走看看