1

Describe the bug

Clone and run project in xcode 11.3 with Catalina MacOS and example project will not compile.

To Reproduce

Steps to reproduce the behavior:

  1. Clone/Download project
  2. Open it in Xcode 11.3

  3. Compile Example Project

  4. See error

Expected behavior

Example project must compile without error.

enter image description here

Varun Naharia
  • 5,318
  • 10
  • 50
  • 84

2 Answers2

1

As hinted at in the comments, the project has dependencies which cannot be found.

According to the path that it is complaining about, its missing one or more Pods

So normally you would go into the project folder in your terminal and enter pod install which will install the missing libraries.

Once you have done this open the workspace (not the project) and then it should work.

Scriptable
  • 19,402
  • 5
  • 56
  • 72
0

Problem is related to different than expected file structure and naming conventions of the Pod

  1. Copy a Info.plist from SideMenu folder to Pods->Target Support Files->SideMenu folder and rename it there to SideMenu-Info.plist

  2. Copy the SideMenu.h from SideMenu folder to Pods->Target Support Files->SideMenu folder and rename it there to SideMenu-umbrella.h

  3. Copy the SideMenu.h from SideMenu to Pods->Target Support Files->Pods-Example and rename it there to Pods-Example-umbrella.h

  4. Rebuild the project

Blazej SLEBODA
  • 8,936
  • 7
  • 53
  • 93