How to write build time stamp into apk

后端 未结 10 653
别跟我提以往
别跟我提以往 2020-12-02 07:57
  1. Making some changes in Android Contacts package
  2. Using mm (make) command to build this application

Because I have to change and

10条回答
  •  孤街浪徒
    2020-12-02 07:58

    in your build.gradle:

    android {
        defaultConfig {
            buildConfigField 'String', 'BUILD_TIME', 'new java.text.SimpleDateFormat("MM.dd.yy HH:mm", java.util.Locale.getDefault()).format(new java.util.Date(' + System.currentTimeMillis() +'L))'
        }
    }
    

提交回复
热议问题