LinuxCommandLibrary

fastlane

Build and release mobile applications from the command-line.

TLDR

Build and sign the iOS application in the current directory

$ fastlane run build_app
copy


Run pod install for the project in the current directory
$ fastlane run cocoapods
copy


Delete the derived data from Xcode
$ fastlane run clear_derived_data
copy


Remove the cache for pods
$ fastlane run clean_cocoapods_cache
copy

Copied to clipboard