How should bundle files be tested at the command line level to most accurately reproduce the scenarios that occur in the Google Play Store?
We use the following command to install the build for the connected device:
bundletool-all-1.14.0.jar build-apks -connected-device --bundle=BUILD_NAME.aab --output=APKS_NAME.apks --ks=keystore.jks --ks-pass=pass:password -ks-key-alias=alias --key-pass=pass:password
The first installation is done with the command
bundletool-all-1.14.0.jar install-apks --apks=APKS_NAME.apks
The application update scenario that takes place on the Play Store is crucial for me.
What should the command be that corresponds to the one that is called during the update on the store?
I have searched the Internet for information on the commands used on the Play Store for bundles, documentation: https://developer.android.com/studio/command-line/bundletool, but I have not found a command line command responsible for updating the apk file.