我有一个使用Xcode 7重建的应用程序。该应用程序一直在使用GoogleMaps IOS SDK。

我的错误:
screenshot

我的Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.1'
pod 'GoogleMaps'


我试图从Google maps.bundle中删除CFBundleSupported平台

    # Patch GoogleMaps' bundle to avoid iTunes connect submission error
post_install do |installer|
    `/usr/libexec/PlistBuddy -c "Delete :CFBundleSupportedPlatforms" ./Pods/GoogleMaps/Frameworks/GoogleMaps.framework/Resources/GoogleMaps.bundle/Info.plist`
    `/usr/libexec/PlistBuddy -c "Delete :CFBundleSupportedPlatforms" ./Pods/GoogleMaps/Frameworks/GoogleMaps.framework/Resources/GoogleMaps.bundle/GMSCoreResources.bundle/Info.plist`
end

最佳答案

此错误已在iOS 1.10.2的Google Maps SDK中修复。

尝试pod update并重新提交到iTunes Connect。

关于ios - 无法将带有Google Maps SDK的项目上传到iTunes Connect。 Xcode 7.0,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32740694/

10-11 09:01