Ionic capacitor build APK debug and App bundle ABB

Table of Contents

Ionic capacitor build APK debug and App bundle ABB

ionic capacitor build Debug APK

ionic cap copy
ionic cap sync

cd android
gradlew assembleDebug

APK will be:

approot_folder\android\app\build\outputs\apk\debug

image

ionic capacitor build App bundle ABB

ionic cap copy
ionic cap sync

cd android
gradlew bundleRelease

ABB will be:

approot_folder\android\app\build\outputs\bundle\release

image

References

Ofcourse you can
.gradlew assembleRelease for apk build and
.gradlew bundleRelease for aab build
And get your app from appropriate path for signing

  1. https://forum.ionicframework.com/t/building-android-app-with-capacitor-3/214351/8
  2. https://dothanhlong.org/ionic-capacitor-build-android-debug-apk/

Leave a Reply

Your email address will not be published. Required fields are marked *