我有一个使用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
答案 0 :(得分:1)
此错误已在Google Maps SDK for iOS 1.10.2中修复。
尝试pod update
并重新提交至iTunes Connect。
答案 1 :(得分:0)
最新的Google Maps SDK for iOS 1.10.3已修复此问题
您可以阅读发行说明:https://developers.google.com/maps/documentation/ios-sdk/releases
https://code.google.com/p/gmaps-api-issues/issues/detail?id=8568