Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to create Podfile because 'plist file at path doesn't exist'

Running command pod init . returns:

[!] The plist file at path /Users/admin/Desktop/TestProject/project.pbxproj doesn't exist.

I'm running the command from the 'Test Project' folder. To get to the .plist file: TestProject > TestProject > Info.plist.

I have the path to the plist file set up in my build settings like this:

enter image description here

What am I missing?

like image 909
Steals Avatar asked Dec 14 '22 02:12

Steals


1 Answers

Because the command is not pod init . it's pod init

CocaoPods Guide Page

That period is just the end of the sentence in cocoapod's guide. https://guides.cocoapods.org/using/using-cocoapods.html

This just got me too, simple typo :)

like image 120
shaneprrlt Avatar answered Jan 03 '23 07:01

shaneprrlt