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 | 31 |
Tags
- 레트로핏
- GIT
- 안드로이드스튜디오
- 코틀린
- Retrofit
- WebView
- image
- dart
- 안드로이드 스튜디오
- 의존성주입
- 코루틴
- Android
- error
- 웹뷰
- 에러
- studio
- viewpager
- ADB
- 스튜디오
- Github
- build
- 유튜브
- coroutine
- 안드로이드
- 깃헙
- MVVM
- 안스
- Gradle
- RecyclerView
- Kotlin
Archives
- Today
- Total
목록네이밍 (1)
코딩하는 일용직 노동자
aab파일 자동 네이밍 방법.
안드로이드 release앱을 빌드하면 생성되는 aab 파일에는 별다른 이름이 없습니다. 앱을 빌드할때 자동으로 버전과 날짜를 파일명에 추가해주는 방법을 사용해보겠습니다. app레벨의 build.gradle 파일에 아래의 소스를 추가해줍니다. // 빌드 변수값 설정 def getDate() { return new SimpleDateFormat("yyyyMMdd").format(new Date()) } def buildDate = getDate() def nameOfApp = "MyApp" android { ... defaultConfig { ... setProperty("archivesBaseName", nameOfApp + "_v" + versionName + "(" + versionCode + ")_"..
안드로이드
2022. 7. 16. 22:17