How to install Android App Bundle (AAB) on device

  1. Convert the AAB into an APK using the bundletool

    1. BUNDLETOOL_LOCATION: C:\tools\bundletool.jar

    2. AAB_LOCATION: app-production-release.aab

    3. APK_LOCATION: app-production-release.apks (extension must be equal to apks).

java -jar BUNDLETOOL_LOCATION build-apks --bundle=AAB_LOCATION --output=APK_LOCATION --mode=universal
  1. Change the output file name from .apks to .zip

  2. Unzip and explore

  3. Install the universal.apk using adb

adb install APK_LOCATION