Skip to content

Latest commit

 

History

History
56 lines (46 loc) · 1.07 KB

File metadata and controls

56 lines (46 loc) · 1.07 KB

Mac Setup Guide — Quanta

1. Homebrew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/homebrew/install/HEAD/install.sh)"

2. Flutter

brew install flutter

3. Xcode

Install from the App Store, then run:

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch

4. VS Code

Download from code.visualstudio.com

Install these extensions inside VS Code:

  • Flutter
  • Dart

5. CocoaPods

sudo gem install cocoapods

6. Verify everything is installed

flutter doctor

7. Clone & Run the App

git clone https://github.com/Ledian63S/quanta.git
cd quanta
flutter create . --org io.github.ledian63s --project-name quanta
flutter pub get
code .

8. Run on iPhone

  • Connect your iPhone via USB
  • Trust the computer on your iPhone when prompted
  • Open ios/Runner.xcworkspace in Xcode
  • Go to Signing & Capabilities → select your Apple ID as the Team
  • Back in VS Code terminal:
flutter run