dpa99c / cordova-plugin-firebasex

Cordova plugin for Google Firebase
MIT License
570 stars 457 forks source link

Build error IPHONEOS_DEPLOYMENT_TARGET #834

Closed loancarre closed 4 months ago

loancarre commented 7 months ago

hello,

I'am sorry but i cant build an ios app with firebasex, i have an error that tell me: " iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99." and this cause failed build i search a solutions in issues but i dont find one, can you help me please ?

Thanks

Capture d’écran 2023-10-03 à 10 13 13
bvcoskun commented 6 months ago

I added this to my Podfile maybe it would help:

post_install do |installer|
    installer.pods_project.targets.each do |target|
          target.build_configurations.each do |config|
              config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
          end
    end
end
dpa99c commented 4 months ago

Please try to build the example project.

If you are able to reproduce the issue in the example project, please open a new issue and fill out the issue template in full, including steps to reproduce in the example project and details of test devices used to reproduce the issue.