Oskilla
Oskilla

Reputation: 13

Unable to compile Podfile "Missing input and no rule to build"

I am currently unable to compile my podfile in Xcode10, and there doesn't seem to be much information online regarding how to fix this issue...

The current message I am getting is:

Showing All Messages
:-1: missing input '(File location)...Podfile.o' and no rule to build it

And this is my podfile:

source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!

target 'App' do
project '/Users/Oskilla/Desktop/Swift/App/App.xcodeproj'
pod 'GoogleMaps'
pod 'GooglePlaces'
pod 'Google-Maps-iOS-Utils'
pod 'INSPhotoGallery'
end

Does anyone have any ideas on how to fix this issue?

Thanks a lot

Upvotes: 1

Views: 184

Answers (2)

Lord Elrond
Lord Elrond

Reputation: 16062

open terminal, cd /toPodFileDir/, then pod install

then open the xcworkspace file in your project folder and try to compile.

If you get errors after trying the above, let me know and I can edit.

Upvotes: 0

keji
keji

Reputation: 5990

You don't compile a Podfile. You use the CocoaPods gem to install and setup a CocoaPods integrated workspace: Getting Started with CocoaPods

Upvotes: 1

Related Questions