Forrest logo
back to the bundletool tool

bundletool-dump:tldr:4c652

bundletool-dump: Display all the resources in the application bundle.
$ bundletool dump resources --bundle=${path-to-bundle-aab}
try on your machine

This command is using bundletool, a command-line tool for working with Android App Bundles (AAB). It is used to extract information about the resources present in an AAB file.

The command breakdown:

  • bundletool dump resources: This part of the command specifies the action to be performed, which is to dump the resources of an AAB file.

  • --bundle=${path-to-bundle-aab}: Here, --bundle is an option to specify the path to the AAB file that will be processed. ${path-to-bundle-aab} is a placeholder that needs to be replaced with the actual path to the AAB file on your system. For example, if the AAB file is located at /home/user/myapp.aab, the command would be bundletool dump resources --bundle=/home/user/myapp.aab.

When executed, this command will extract information about the resources present in the specified AAB file, such as images, colors, strings, layouts, etc. This information can be useful for troubleshooting or further analysis of the contents of the AAB file.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the bundletool tool