Forrest logo
back to the fastlane tool

fastlane:tldr:139ef

fastlane: Delete the derived data from Xcode.
$ fastlane run clear_derived_data
try on your machine

The command "fastlane run clear_derived_data" is used in the context of Fastlane, a popular mobile application deployment tool. This specific command is used to clear the derived data of an Xcode project.

Derived data is generated by Xcode and includes compiled artifacts, build intermediates, and cached data. Clearing derived data can help in resolving various build issues or cleaning up unnecessary files.

When you run the "fastlane run clear_derived_data" command, Fastlane triggers Xcode's "Delete Derived Data" functionality. This removes the derived data associated with the specified Xcode project.

In summary, this command is used to clear the derived data of an Xcode project using Fastlane.

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 fastlane tool