Based on: How to Install APKs (App Bundle) on Android? (2023) (digitbin.com)
1. Download .jar file from here Releases · google/bundletool (github.com)
2. In command line:
java -jar bundletool.jar build-apks --bundle=app_name.aab --output=app_name.apks --mode=universal
2a. To sighn with the related kesystore file:
java -jar bundletool.jar build-apks --bundle=app_name.aab --output=app_name.apks --mode=universal --ks="path_to_the_kestore\Kestore_Alias.keystore" --ks-key-alias=Kestore_Alias
3. Rename app_name.apks to app_name.zip and extract universal.apk
4. Copy to your device and install.