Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Android Apk 이름
- R프로그래밍
- jQuery
- android error
- release unsigned
- Kotlin
- JavaScript
- apache gzip
- Firebase
- fragment
- Java
- FLUTTER
- 안드로이드
- spring
- Android Apk
- tomcat
- Android Apk 이름 변경
- DataTable
- android fragment
- Eclipse
- CSS사용법
- error
- Android
- css
- MySQL
- java error
- html
- Program type already present
- Exception
- release Apk
Archives
- Today
- Total
selfstarter
Android Apk 이름 변경하기 본문
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}";
}
}
}
}
'App > Android' 카테고리의 다른 글
Unable to start service Intent not found (0) | 2020.10.26 |
---|---|
not allowed to perform MOCK_LOCATION (0) | 2020.10.05 |
release Apk unsigned 가 붙을 경우 (0) | 2020.09.29 |
Multiple flavorDimensions 정리 (0) | 2020.09.28 |
permission denied for window type 2038 (0) | 2020.09.07 |
Comments