Validation failed (409)
Validation failed (409)
Invalid Bundle. The bundle ProductName.app/Frameworks/GoogleAppMeasurementIdentitySupport.framework does not support the minimum OS Version specified in the Info.plist. (ID: 86f593cb-9350-46ac-ae23-b0dc335bc617)
Validation failed (409)
Missing Info.plist value. A value for the key 'MinimumOSVersion' in bundle ProductName.app/Frameworks/GoogleAppMeasurement.framework is required. (ID: f158a7ba-e8f0-4f5a-9d3b-0d4b12e3d4b4)
Validation failed (409)
The bundle 'Payload/ProductName.app/Frameworks/GoogleAppMeasurementIdentitySupport.framework' is missing plist key. The Info.plist file is missing the required key: CFBundleShortVersionString. Please find more information about CFBundleShortVersionString at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring (ID: d10a2989-22e9-405c-825e-e8433e6bccee)
Validation failed (409)
The bundle 'Payload/ProductName.app/Frameworks/GoogleAppMeasurement.framework' is missing plist key. The Info.plist file is missing the required key: CFBundleShortVersionString. Please find more information about CFBundleShortVersionString at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring (ID: df55661f-f33e-4305-a372-6142b6cb7968)
Validation failed (409)
Invalid Bundle. The bundle ProductName.app/Frameworks/FirebaseAnalytics.framework does not support the minimum OS Version specified in the Info.plist. (ID: 8f217d28-1993-49d0-ae4b-93c2f36a939b)
Validation failed (409)
Invalid MinimumOSVersion. Apps that only support 64-bit devices must specify a deployment target of 8.0 or later. MinimumOSVersion in 'ProductName.app/Frameworks/FirebaseAnalytics.framework' is ''. (ID: 5c3c0e07-2c35-4577-a325-ae196f30cdea)
Validation failed (409)
Invalid MinimumOSVersion. Apps that only support 64-bit devices must specify a deployment target of 8.0 or later. MinimumOSVersion in 'ProductName.app/Frameworks/GoogleAppMeasurement.framework' is ''. (ID: 9f8bc916-e6e6-4037-b549-d6b5ce5972a7)
Validation failed (409)
Missing Info.plist value. A value for the key 'MinimumOSVersion' in bundle ProductName.app/Frameworks/GoogleAppMeasurementIdentitySupport.framework is required. (ID: 61de988d-871c-4c13-9856-944d428f7d7f)
Validation failed (409)
The bundle 'Payload/ProductName.app/Frameworks/FirebaseAnalytics.framework' is missing plist key. The Info.plist file is missing the required key: CFBundleShortVersionString. Please find more information about CFBundleShortVersionString at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring (ID: 88434f1f-7b11-4091-88f7-f49976dc4311)
Validation failed (409)
Missing Info.plist value. A value for the key 'MinimumOSVersion' in bundle ProductName.app/Frameworks/FirebaseAnalytics.framework is required. (ID: 26d9b12a-efdf-4a83-b03b-b97163601123)
Validation failed (409)
Invalid MinimumOSVersion. Apps that only support 64-bit devices must specify a deployment target of 8.0 or later. MinimumOSVersion in 'ProductName.app/Frameworks/GoogleAppMeasurementIdentitySupport.framework' is ''. (ID: ac6fcdb2-436f-40a2-a3c0-0b6ce32afe85)
Validation failed (409)
Invalid Bundle. The bundle ProductName.app/Frameworks/GoogleAppMeasurement.framework does not support the minimum OS Version specified in the Info.plist. (ID: 2dc97a0f-f888-4554-b7c8-f5b5622dab60)
遇到以上报错在pods 里面添加
post_install do |installer|
# 给每一个库设置签名
installer.pods_project.build_configurations.each do |config|
config.build_settings['DEVELOPMENT_TEAM'] = "759UK2C27K";
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
installer.aggregate_targets.each do |target|
target.xcconfigs.each do |variant, xcconfig|
xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
xcconfig_path = config.base_configuration_reference.real_path
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end
end
end
end