我目前无法在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

有人对如何解决这个问题有什么想法吗?
谢谢

最佳答案

你不会编译一个播客文件。您可以使用CocoaPods gem安装和设置CocoaPods集成工作区:
Getting Started with CocoaPods

关于swift - 无法编译Podfile“缺少输入,无规则可建立”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54718986/

10-10 21:07