기타

[Android] .aab to .apk Convert

보겸삼촌 2020. 10. 26. 23:25

1. bundletool-all-version.jar install

 

github.com/google/bundletool/releases

 

Releases · google/bundletool

Bundletool is a command-line tool to manipulate Android App Bundles - google/bundletool

github.com

 

2. aab 파일이 있는 경로로 이동 > bundletool-all-version.jar 파일 복사

3. 명령 실행

# terminal
# 경로는 .aab 파일이 있는 디렉토리

java -jar "bundletool-all-버전.jar" build-apks --bundle="기존파일명.aab" --output="변환할파일명.apks" --mode=universal

 

4. 해당 경로에 생성된 apks 파일의 확장자를 zip으로 변경 후 압축을 해제

 

 

 

[참고] jaehyun91.tistory.com/entry/aab-to-apk-%EB%B3%80%ED%99%98