Forrest logo
back to the bundletool tool

bundletool-dump:tldr:142a5

bundletool-dump: Display the contents of the bundle configuration file.
$ bundletool dump config --bundle=${path-to-bundle-aab}
try on your machine

The command "bundletool dump config --bundle=${path-to-bundle-aab}" is used with the bundletool tool to obtain the configuration information of an Android App Bundle file, denoted as a .aab file. Here's a breakdown of the command:

  • "bundletool": This is the command-line tool developed by Google called bundletool. It provides various functions related to Android App Bundle files, including extracting information, testing, and more.

  • "dump config": This is a specific command provided by bundletool to display the configuration information of an Android App Bundle.

  • "--bundle=${path-to-bundle-aab}": This is an argument passed to the "dump config" command. It specifies the path to the .aab file for which you want to retrieve the configuration information. You need to replace "${path-to-bundle-aab}" with the actual file path of your .aab file.

When executing this command, bundletool will read the specified .aab file and generate an output containing various configuration details about the Android App Bundle. These details may include features, device requirements, supported languages, screen densities, etc.

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