2015. 12. 21. 18:10ㆍDevelopment/[Android] 안드로이드
//안드로이드 스튜디오 빌드 APK파일명 자동 변경
android {
buildTypes {
release {
applicationVariants.all { variant ->
variant.outputs.each { output ->
def file = output.outputFile
output.outputFile = new File(
file.parent,
file.name.replace("-release.apk", "_${variant.buildType.name}_v" + defaultConfig.versionName + ".apk"))
}
}
//또는
/*applicationVariants.all { variant ->
def file = variant.outputFile
def newName = "나의앱_v" + defaultConfig.versionName
newName += "_${variant.buildType.name}.apk"
variant.outputFile = new File(file.parent, newName);
}*/
}
}
'Development > [Android] 안드로이드' 카테고리의 다른 글
FireBase 를 사용하기 위한 안드로이드 스튜디오 필수 설정 (2) | 2018.11.22 |
---|---|
안드로이드 단말기 dpi와 디자인 가이드 적용방법 (5) | 2018.08.17 |
안드로이드 해상도별 아이콘 사이즈 (0) | 2013.08.06 |
ADB 명령어 (0) | 2013.06.21 |
안드로이드 openGL 학습에 도움이 되는 사이트 (0) | 2013.01.15 |