user6534587
user6534587

Reputation:

Unable To Find Xcode Project

I've been having an issue all day and cannot figure it out. I'm new to iOS developing, so any guidance or answers would be beyond appreciated!

I'm trying to install Stripe via Cocoapods. I keep getting the error in my terminal that it's unable to find the project.

Here is my Pod file:

Pod file

Here is the location with all the files:

location with all the files

Upvotes: 2

Views: 1788

Answers (1)

l'L'l
l'L'l

Reputation: 47159

Inside your pod file project path should be:

~/Downloads/...

Not

~Downloads/...

~/ is relative to your users home directory, however, ~ without the / is not.

Upvotes: 5

Related Questions