일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- BottomNavigation
- 로그캣 색상지정
- 로띠애니메이션
- aab파일apk변환
- Bluetooth 스캔
- apk변환
- 안드로이드aab변환
- Android Bluetooth
- 앱강종
- 안드로이드
- Opacity Hex
- 앱강종현상
- Android
- 바텀네비게이션
- 안드로이드apk변환
- 투명도 hex값
- bottomNavigation animation
- lottieAnimation
- 안드로이드 디버깅툴
- Android10
- 로그캣 색상변경
- target29
- 디바이스ID
- svn체크아웃
- Android OS 10
- 고유식별자
- retrieveExplicitStyle
- 안드로이드 로그캣
- targetSDK29
- 바텀네비
- Today
- Total
공부하는 다락방
.aab to .apk 변환 본문
상용앱을 앱번들(.aab)로 업로드 시키다 보니 폰에 직접 넣고 다운로드 테스트 해야할때 apk로 변환해야하는 일들이 종종 생겼다.
bundletool로 변환하는 방법 2가지 중 내가 자주 사용하는 방법 한가지를 공유하고자 한다.
(자세한 내용은 아래 링크 참고)
[apk 변환]
cmd창에 아래와같이 입력한다.
java -jar "bundletool-all-0.12.0.jar" build-apks --bundle="your.aab(변환할 .aab파일)" --output="universal.apks(.apk파일을 저장할 경로와 파일명)" --mode=universal
지정한 경로에 .apks 파일이 생성되고 그걸 .zip으로 변환한다음 압축을 풀면 universal.apk가 존재한다.
[참조]
https://stackoverflow.com/questions/53040047/generate-apk-file-from-aab-file-android-app-bundle
Generate Apk file from aab file (android app bundle)
Is there any way to generate an apk file from android app Bundle via terminal or using android studio?
stackoverflow.com
https://liapp.lockincomp.com/ko/blog/blog-Post/tech-google-android-app-bundle/
[TECH] ANDROID APP BUNDLE (AAB)의 장점과 TEST 방안
ANDROID APP BUNDLE (AAB)의 장점과 TEST 방안 - 구글에서 제공하고 있는 AAB를 사용하였을때 얻을수 있는 이점과 실제 앱이 정상적으로 동작하는지 확인할 수 있는 테스트 방안에 대해 설명 합니다.
liapp.lockincomp.com
'Android' 카테고리의 다른 글
Android 10(target SDK 29) does not meet the requirements to access device identifiers. (1) | 2020.03.13 |
---|---|
retrieveExplicitStyle NullPointerException Android 10 (0) | 2020.03.12 |
알림채널(Notification Channel) (0) | 2018.09.07 |
외장 SD카드 Path 가져오기 (0) | 2017.04.12 |
안드로이드 디버깅 플랫폼 (0) | 2017.04.07 |