iOS Development Environment Setup
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:
-
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.
-
Install Command Line Tools
You'll need to install the Xcode command line tools. Open Terminal and run the following command:
xcode-select --install
-
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
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
-
Install Ruby
Ruby is required for CocoaPods installation. To install a specific version, use the following command:
rbenv install 3.2.0
Once installed, verify the Ruby version:
ruby -v
This will show the installed Ruby version (ensure it is the correct version for CocoaPods).
-
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
Once the installation is complete, verify the version of Watchmen by running:
watchmen --version