Home > Enterprise >  Is there a way to download .aab file from Play Store
Is there a way to download .aab file from Play Store

Time:10-12

I am using ProGaurd and i found that the mapping file is part of .aab file, so if some one has that mapping file can revert the code to its original form, so is there a way to download .aab file from play store or it is not downloadable from play store.

CodePudding user response:

I think there is no way of downloading .aab file from Play Store to your pc but you can download .aab file from third party store like apkpure.com . They have almost all of the apps available on Play Store.

CodePudding user response:

no, its not possible. Play Store is using AAB file for generating APK file per device, just like bundletool does

CodePudding user response:

AAB stands for Android App bundle. According to Android Developer's guide, an Android App Bundle is a publishing format that includes all the resources and compiled code for an application, and defers the APK generation and signing to Google Play. AAB formats allow custom downloads for devices that request an application.

The AAB file converts it to APK and send it to the respective devices according to their required formats.

So NO you cannot download aab from playstore

  • Related