我有一个 Podfile 如下:
platform :ios, '8.3'
use_frameworks!
pod 'FBSDKCoreKit', '~> 4.1.0'
pod 'FBSDKLoginKit', '~> 4.1.0'
pod 'google-plus-ios-sdk', '~> 1.7.1'
pod 'FXForms', '~>1.2.12'
pod 'JGProgressHUD', '~>1.2.6'
pod 'Google-API-Client', '~> 1.0.422'
pod 'XCGLogger','~> 2.0'
pod 'PulsingHalo'
pod 'NYXImagesKit','~> 2.3.0'
和一个桥接头如下:
#import <GoogleOpenSource/GTMOAuth2Authentication.h>
#import <GooglePlus/GPPSignIn.h>
#import <GooglePlus/GPPSignInButton.h>
#import <GooglePlus/GPPURLHandler.h>
#import "GTLApi.h"
#import <Google-API-Client/GTLStorage.h>
GTLApi.h
上面是为 Google Cloud Endpoints API 生成的客户端。在构建时,pod 构建良好,但桥接头却没有。它失败了,因为定义了两次的东西有数百个编译错误。
Google-API-Client 应该如何与 Cloud Endpoints API 客户端共存?它们都导入GTLObject.h
.