appleIOS

iOS Development Environment Setup

circle-info

bullhorn NOTE :\ Before launching the app, ensure you have correctly set up the ADMIN LARAVEL and have added all necessary data through the admin panel.

iOS Development Environment Setup

Follow these steps to set up your iOS development environment:

  1. Install Xcode

    Download and install the latest version of Xcode. The recommended version is Xcode 16.1 or above, as it includes important updates for iOS 15 development and modern tooling for SwiftUI.

  2. Install Command Line Tools

    You'll need to install the Xcode command line tools. Open Terminal and run the following command:

    xcode-select --install

    files-o

  3. Install CocoaPods

    CocoaPods is a dependency manager for iOS. Install it using the following command in Terminal:

    sudo gem install cocoapods -v 1.16.2

    files-o

    You may be prompted to enter your password since you're using sudo. Once the installation is complete, you can verify it by running:

    pod --version

    files-o

  4. Install Ruby

    Ruby is required for CocoaPods installation. To install a specific version, use the following command:

    rbenv install 3.4.1

    files-o

    Once installed, verify the Ruby version:

    ruby -v

    files-o

    This will show the installed Ruby version (ensure it is the correct version for CocoaPods).

  5. Install Watchmen (Recommended Version : 2025.03.03.00)

    Watchmen version 2025.03.03.00 is the recommended version. Install it using the following command:

    sudo gem install watchmen -v 2025.03.03.00

    files-o

    Once the installation is complete, verify the version of Watchmen by running:

    watchmen --version

Last updated