From 5750f15950fcf0b33e6811018bb43690c0b29e2a Mon Sep 17 00:00:00 2001 From: Shreyansh Jain Date: Fri, 27 Feb 2026 16:34:02 +0530 Subject: [PATCH 1/3] local installation made easy added optional instruction to migrate to latest flutter version in setup_run.md AND added cocoapods installation command for macos inside platform_specific_instructions.md --- doc/dev_guide/platform_specific_instructions.md | 8 ++++++++ doc/dev_guide/setup_run.md | 12 ++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/doc/dev_guide/platform_specific_instructions.md b/doc/dev_guide/platform_specific_instructions.md index 464087b9..2c97fd21 100644 --- a/doc/dev_guide/platform_specific_instructions.md +++ b/doc/dev_guide/platform_specific_instructions.md @@ -2,6 +2,14 @@ ## macOS +Install CocoaPods (First-Time Setup) + +If this is your first time running API Dash on macOS, install CocoaPods to manage native plugin dependencies: + +```bash +brew install cocoapods +pod setup (should return Setup completed) +``` Add below keys to `macos/Runner/DebugProfile.entitlements` and `macos/Runner/Release.entitlements`. ``` diff --git a/doc/dev_guide/setup_run.md b/doc/dev_guide/setup_run.md index e87f7daf..50973c0d 100644 --- a/doc/dev_guide/setup_run.md +++ b/doc/dev_guide/setup_run.md @@ -33,13 +33,21 @@ Get all dependencies of packages melos pub-get ``` -**Step 6 -** Get all dependencies of the app +**Step 6 -** Update Flutter Dependencies (Optional) + +To fix compatibility issues, update the `freezed` package to version 3.2.5 by running: + +``` +flutter pub add dev:freezed:^3.2.5 +``` + +**Step 7 -** Get all dependencies of the app ``` flutter pub get ``` -**Step 7 -** Run the project by executing the below command +**Step 8 -** Run the project by executing the below command ``` flutter run From 2be0b95c1901c15aee763c68dbe01f6e6e6f447b Mon Sep 17 00:00:00 2001 From: Ankit Mahato Date: Sun, 8 Mar 2026 06:09:40 +0530 Subject: [PATCH 2/3] Revise steps for updating and getting dependencies Updated steps for managing Flutter dependencies in the setup guide. --- doc/dev_guide/setup_run.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/doc/dev_guide/setup_run.md b/doc/dev_guide/setup_run.md index 50973c0d..8c9f538d 100644 --- a/doc/dev_guide/setup_run.md +++ b/doc/dev_guide/setup_run.md @@ -33,15 +33,13 @@ Get all dependencies of packages melos pub-get ``` -**Step 6 -** Update Flutter Dependencies (Optional) - -To fix compatibility issues, update the `freezed` package to version 3.2.5 by running: +**Step 6 -** Get all dependencies of the app ``` -flutter pub add dev:freezed:^3.2.5 +flutter pub get ``` -**Step 7 -** Get all dependencies of the app +**Step 7 -** Run the project by executing the below command ``` flutter pub get From 431e1f3d6b4b96142ab6808c061a86aa0bb8b817 Mon Sep 17 00:00:00 2001 From: Ankit Mahato Date: Sun, 8 Mar 2026 06:10:29 +0530 Subject: [PATCH 3/3] Update setup_run.md --- doc/dev_guide/setup_run.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/doc/dev_guide/setup_run.md b/doc/dev_guide/setup_run.md index 8c9f538d..e87f7daf 100644 --- a/doc/dev_guide/setup_run.md +++ b/doc/dev_guide/setup_run.md @@ -41,12 +41,6 @@ flutter pub get **Step 7 -** Run the project by executing the below command -``` -flutter pub get -``` - -**Step 8 -** Run the project by executing the below command - ``` flutter run ```