Forrest logo
back to the bundletool tool

bundletool:tldr:1ac55

bundletool: Estimate the download size of an application.
$ bundletool get-size total --apks=${filename-apks}
try on your machine

This command is using the bundletool tool to retrieve the total size of an Android App Bundle or APK Set file.

Here is a breakdown of the command:

  • bundletool: This is the name of the tool being executed.
  • get-size: This is the action being performed by the tool, which is to retrieve the size.
  • total: This is the type of size being requested. In this case, it indicates the total size of the app bundle or APK Set file.
  • --apks=${filename-apks}: This is an argument passed to the command. --apks indicates that the file being analyzed is an Android App Bundle or APK Set file. ${filename-apks} is a placeholder for the actual file name. Replace ${filename-apks} with the path to the specific app bundle or APK Set file you want to get the size of.

Overall, this command uses bundletool to determine the total size of an Android App Bundle or APK Set 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