美文网首页
Android设置APK打包名

Android设置APK打包名

作者: 图之 | 来源:发表于2019-02-27 13:22 被阅读0次
//apk名字设置
    android.applicationVariants.all { variant ->
        variant.outputs.all {
            //第一个参数:版本名 第二个参数:版本号
            outputFileName = "前缀啥的_${defaultConfig.versionName}_${variant.productFlavors[0].name}.apk"
        }
    }

相关文章

网友评论

      本文标题:Android设置APK打包名

      本文链接:https://www.haomeiwen.com/subject/ysoxuqtx.html