Skip to content

Instantly share code, notes, and snippets.

@thanhzusu
Created November 9, 2020 05:23
Show Gist options
  • Save thanhzusu/82e94852ada9f718644b8534ec137a2d to your computer and use it in GitHub Desktop.
Save thanhzusu/82e94852ada9f718644b8534ec137a2d to your computer and use it in GitHub Desktop.
How to use bundletool to export aab file to apks?
// Export aab file to apks file
bundletool build-apks --bundle=/MyApp/my_app.aab --output=/MyApp/my_app.apks
--ks=/MyApp/keystore.jks
--ks-pass=file:/MyApp/keystore.pwd
--ks-key-alias=MyKeyAlias
--key-pass=file:/MyApp/key.pwd
// Install apks file
bundletool install-apks --apks=/MyApp/my_app.apks
Visit this website to have detail information: https://developer.android.com/studio/command-line/bundletool
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment