无法编译 Podfile "Missing input and no rule to build"

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

我目前无法在 Xcode10 中编译我的 podfile,而且网上似乎没有太多关于如何解决这个问题的信息...

我收到的当前消息是:

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

这是我的播客文件:

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

有人知道如何解决这个问题吗?

非常感谢

您没有编译 Podfile。您使用 CocoaPods gem 安装和设置 CocoaPods 集成工作区: Getting Started with CocoaPods

打开终端,cd /toPodFileDir/,然后pod install

然后打开项目文件夹中的xcworkspace文件并尝试编译。

如果在尝试上述操作后出现错误,请告诉我,我可以进行编辑。