Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/ruby-on-rails-4/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Xcode Cocoapods:没有这样的模块_Xcode_Cocoapods - Fatal编程技术网

Xcode Cocoapods:没有这样的模块

Xcode Cocoapods:没有这样的模块,xcode,cocoapods,Xcode,Cocoapods,我正在使用Xcode 7.3,刚刚将我的代码更新为swift 2.3(不确定它是否真实)。 我的项目包括许多豆荚,像谷歌,阿拉莫菲尔,FBSDK 当我尝试构建我的项目时,它失败了,在“导入Google”上出现以下错误: “谷歌没有这样的模块” 显然,如果我对这一行进行注释,它将在下次导入时失败: “没有此类模块FBSDKLoginKit” 这是我的播客文件: # Uncomment this line to define a global platform for your project pl

我正在使用Xcode 7.3,刚刚将我的代码更新为swift 2.3(不确定它是否真实)。 我的项目包括许多豆荚,像谷歌,阿拉莫菲尔,FBSDK

当我尝试构建我的项目时,它失败了,在“导入Google”上出现以下错误: “谷歌没有这样的模块”

显然,如果我对这一行进行注释,它将在下次导入时失败: “没有此类模块FBSDKLoginKit”

这是我的播客文件:

# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!

target 'MyProject' do
pod 'Cartography'
pod 'Google/SignIn'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'Alamofire', '~> 3.5'
pod 'UIImageView-Letters'
pod 'GoogleMaps'
pod 'SDWebImage'
pod 'iCarousel'
pod 'ActionSheetPicker-3.0'
pod 'Stripe'
pod 'DateTools'
pod 'PayPal-iOS-SDK'
pod 'DLRadioButton'
pod 'p2.OAuth2' 
end

target 'MyProjectTests' do

end

target 'MyProjectUITests' do

end

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['SWIFT_VERSION'] = '2.3'
        end
    end
end
我能做些什么来解决这个问题? (我已经尝试过pod安装、pod更新、清理、清除派生数据…)

谢谢

在应用程序的project Bridgeting Header.h文件中,导入Google登录SDK头,如下所示:

#import <Google/SignIn.h>
#导入

无需在其他任何地方执行“
”导入操作