Hey, is it possible to use swift package dependenc...
# compose-ios
d
Hey, is it possible to use swift package dependencies and cocoapods dependecies in one project. I can not get firebase to work as a cocoapods dependecie. Other cocoapoda dependencies are working, Always get this error: "warning: The 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.5.99. (in target 'FirebaseCoreExtension' from project 'Pods') "
f
You can ignore this warning, don’t worry
It means Firebase is configured to work at least on iOS11 but Xcode officially support at least iOS12, the warning can be removed by adding some rules inside your pod file
c
its the other way around. the app is configured to run on iOS 11 but the library is configured for ios 12 and above.
f