Reputation: 103
Why do the folders of my workspace file still remain in the xcodeproj file? In other words, Group "BrieflyA" and its contents from the elevated window(xcodeproj) should be above the "Pods" Group in the behind window (workspace), but instead it is titled as "BrieflyA.xcodeproj". Trying out the SDK here shows that a working firebase project has all of those contents under the same xcodeworkspace. Could that be the reason why I am getting this error, because I'm trying to build it in xcodeproj? If so how can I fix this becuase I did a full clean and even started a new project, but continue with the same error.
Upvotes: 2
Views: 5715
Reputation: 1141
platform :ios,
'9.0' use_frameworks!
pod 'Firebase', '>= 2.5.1
That should fix it.
Upvotes: 3