Ann Knowledge Hub
  • 📚Home
  • Bash
  • 🔀git
  • 🤖AI / ML / Gen AI
    • Generative AI - A Primer
    • Course Notes - Google ML Intro
  • 🎯How To Guides
  • 🔖Good Reference Articles
  • 📳Mobile Development
    • iOS
      • Useful Information
      • Debugging Tricks
      • ViewController Concepts
      • Nullability Annotations
      • UI Testing XCTestUI
      • Xcode Concepts
    • Mobile Application Services
    • AB Testing
    • Firebase
    • Good Articles Blogs
    • iOS Troubleshooting
    • Cocoapods Troubleshooting
  • 💯Miscellaneous
    • Google Calendar API
  • 🌐Web Development
    • 📚Learning Resources
    • 🔎Troubleshooting Issues
Powered by GitBook

About Me

  • My blog
  • GitHub

© 2024 Ann Catherine Jose

On this page

Was this helpful?

Edit on GitHub
  1. Mobile Development
  2. iOS

Xcode Concepts

xcodebuild commands

  • xcodebuild build- builds the project to run on simulators (add scheme/workspace/project)

  • xcodebuild analyze - static analysis of the project

  • xcodebuild test - builds the project and runs the tests

  • xcodebuild build-for-testing - builds the project for testing (use with test-without-building)

  • xcodebuild test-without-building - run the tests on multiple simulators without building

  • xcodebuild archive - creates an xcarchive for the project

  • xcodebuild -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

PreviousUI Testing XCTestUINextMobile Application Services

Last updated 6 years ago

Was this helpful?

📳