You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Package product requires minimum platform version 11.0 for the iOS platform, but this target supports 9.0 (in target from project 'XMPPFramework')
#1225
Im currently building an iOS package with the XMPPFramework. Everything is fine, but when I run some test with Bitrise, I have the 3 following issues :
The package product 'CocoaLumberjackSwift' requires minimum platform version 11.0 for the iOS platform, but this target supports 9.0 (in target 'XMPPFrameworkSwift' from project 'XMPPFramework')
The package product 'CocoaLumberjack' requires minimum platform version 11.0 for the iOS platform, but this target supports 9.0 (in target 'XMPPFramework' from project 'XMPPFramework')
The package product 'CocoaLumberjack' requires minimum platform version 11.0 for the iOS platform, but this target supports 9.0 (in target 'XMPPFrameworkSwift' from project 'XMPPFramework')
All theses package product that are requiring the minimum plateform version 11.0 are package that are coming from the package XMPPFramework, that does support 9.0. So how can I solve this issue ?
Im not using Cocoapods and I don't have a Podfile for this project. Im managing my dependencies with the Swift Package Manager. Theses error are also only triggered by Bitrise when I build and run my main scheme.
Thanks
The text was updated successfully, but these errors were encountered:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11'
end
end
end
Hi everyone.
Im currently building an iOS package with the XMPPFramework. Everything is fine, but when I run some test with Bitrise, I have the 3 following issues :
All theses package product that are requiring the minimum plateform version 11.0 are package that are coming from the package XMPPFramework, that does support 9.0. So how can I solve this issue ?
Im not using Cocoapods and I don't have a Podfile for this project. Im managing my dependencies with the Swift Package Manager. Theses error are also only triggered by Bitrise when I build and run my main scheme.
Thanks
The text was updated successfully, but these errors were encountered: