Hi there,
App Distro only supports files of the formats .apk and .ipa. If you convert your AAB to a universal APK you can upload that to the App Distribution console. Here are some steps:
1. Download the
bundletool, as you will need it to generate APKs from your AAB.
bundletool build-apks --mode=universal --bundle=/MyApp/my_app.aab --output=/MyApp/my_app.apks
3. Then, unzip the .apks into a directory. This will generate a universal APK file.
unzip /MyApp/my_app.apks -d /MyApp/universal_apk
The result should be a .apk file that includes all your resources and is still uploadable to the App Distribution console.
Let me know if this works for you!
Cheers,
Kevin