> For the complete documentation index, see [llms.txt](https://learn.mondayhero.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://learn.mondayhero.io/design-to-flutter/troubleshooting-guide/github-monday-hero-starter-project-troubleshooting.md).

# Github Monday Hero Starter Project Troubleshooting

Monday Hero provides a base project on GitHub to expedite the synchronization process. On this page, we'll address the known issues you might encounter with the template project.

**CocoaPods error:**

If you encounter this error in the terminal:

<figure><img src="https://479678609-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MEfkN8oSQyQ4BaBzwxH-4037006485%2Fuploads%2FtwuVj9ba6bsqyXPAYj9D%2FScreenshot%202024-05-05%20at%2021.30.49.png?alt=media&amp;token=b29e865a-de0a-4a26-a9a7-728e8208ed1b" alt=""><figcaption><p>Cocapods Error</p></figcaption></figure>

Fix it by following the steps below:

1. Navigate to iOS/podfile.
2. Uncomment the line 'platform :ios, '12.0'' as shown below.

   ```ruby
   platform :ios, '12.0'
   ```

<figure><img src="https://479678609-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MEfkN8oSQyQ4BaBzwxH-4037006485%2Fuploads%2FJsWcOzBepwBiT9GB3xw9%2FScreenshot%202024-05-05%20at%2021.32.45.png?alt=media&amp;token=f77cd5c7-76e9-464f-9a85-8d2f3c7750df" alt=""><figcaption><p>Podfile Changes 1</p></figcaption></figure>

3. Comment or delete the lines below.

<figure><img src="https://479678609-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MEfkN8oSQyQ4BaBzwxH-4037006485%2Fuploads%2FCewnjG8bEQkHapPxgPrY%2FScreenshot%202024-05-05%20at%2021.34.22.png?alt=media&amp;token=dff806d2-3bae-41c6-b96d-4e0fcb88ad29" alt=""><figcaption><p>Podfile Changes 2</p></figcaption></figure>

4. Go to the terminal and run 'Flutter clean' followed by 'Flutter pub get'.

You're all set.
