码迷,mamicode.com
首页 > 其他好文 > 详细

打包apk输出自定义文件名称

时间:2021-01-02 10:49:20      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:time   androi   system   current   打包apk   cat   var   puts   定义   

android {
    ......

    buildTypes {
        ......

        android.applicationVariants.all { variant ->
            variant.outputs.all {
                outputFileName = "name_v${variant.versionName}_${variant.versionCode}_${System.currentTimeMillis()}.apk".toLowerCase()
            }
        }
        ......
    }
    ......
}

打包apk输出自定义文件名称

标签:time   androi   system   current   打包apk   cat   var   puts   定义   

原文地址:https://www.cnblogs.com/Serendipity2020/p/14204704.html

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