Xcode Concepts
xcodebuild commands
xcodebuild build
- builds the project to run on simulators (add scheme/workspace/project)xcodebuild analyze
- static analysis of the projectxcodebuild test
- builds the project and runs the testsxcodebuild build-for-testing
- builds the project for testing (use withtest-without-building
)xcodebuild test-without-building
- run the tests on multiple simulators without buildingxcodebuild archive
- creates an xcarchive for the projectxcodebuild -exportArchive
- exports a given archive as an IPA file
Tool to upload the IPA to iTunes connect - ALTool (Application Loader Tool)
Location of the tool: /Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/Frameworks/ITunesSoftwareService.framework/Support/altool
Last updated
Was this helpful?