selfstarter

Android Apk 이름 변경하기 본문

App/Android

Android Apk 이름 변경하기

selfstarter 2020. 9. 29. 15:11

Android Apk 이름 변경하기

 

apk 이름 변경하기(debug, release 둘 다 적용 가능)

 


android {
    defaultConfig {
        applicationVariants.all { variant ->
            variant.outputs.all { output ->
                def dateStr = new Date().format("yyyyMMdd");
                outputFileName = "${dateStr}${defaultConfig.versionCode}${outputFileName}";
            }
        }
    }
}
Comments