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
Our iOS application has iOS 12 as minimum deployment target (platform :ios, '12.0' in Podfile).
In our Podfile we have:
pod 'Firebase/Crashlytics', '~> 11.0'
It fails as in Firebase.podspec Crashlytics subspec has iOS 13
s.subspec 'Crashlytics' do |ss|
ss.ios.deployment_target = '13.0'
end
But if we add to Podfile pod 'FirebaseCrashlytics', '~> 11.0'
It works, because in FirebaseCrashlytics.podspec iOS 12 is specified ios_deployment_target = '12.0'
Probably iOS 12 can be specified in both places?
Thanks
Reproducing the issue
No response
Firebase SDK Version
11.1
Xcode Version
15.4
Installation Method
CocoaPods
Firebase Product(s)
Crashlytics
Targeted Platforms
iOS
Relevant Log Output
[!] CocoaPods could not find compatible versions for pod "Firebase/Crashlytics":
In Podfile:
Firebase/Crashlytics (~> 11.0)
Specs satisfying the `Firebase/Crashlytics (~> 11.0)` dependency were found, but they required a higher minimum deployment target.
If using Swift Package Manager, the project's Package.resolved
No response
If using CocoaPods, the project's Podfile.lock
No response
The text was updated successfully, but these errors were encountered:
@Igor-Palaguta Thanks for the report. We'll fix in Firebase 11.2 or 11.3. In the meantime, the workaround is to use the recommended pod 'FirebaseCrashlytics', '~> 11.0'
Description
Our iOS application has iOS 12 as minimum deployment target (platform :ios, '12.0' in Podfile).
In our Podfile we have:
pod 'Firebase/Crashlytics', '~> 11.0'
It fails as in Firebase.podspec Crashlytics subspec has iOS 13
But if we add to Podfile
pod 'FirebaseCrashlytics', '~> 11.0'
It works, because in FirebaseCrashlytics.podspec iOS 12 is specified
ios_deployment_target = '12.0'
Probably iOS 12 can be specified in both places?
Thanks
Reproducing the issue
No response
Firebase SDK Version
11.1
Xcode Version
15.4
Installation Method
CocoaPods
Firebase Product(s)
Crashlytics
Targeted Platforms
iOS
Relevant Log Output
If using Swift Package Manager, the project's Package.resolved
No response
If using CocoaPods, the project's Podfile.lock
No response
The text was updated successfully, but these errors were encountered: