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
Possible solution - exclude calls to those constants using #if TARGET_OS_MACCATALYST, although i'm not 100% sure it's a complete solution for macCatalyst.
The text was updated successfully, but these errors were encountered:
@paulb777 Linking CoreTelephony explicitly works on my side too, thanks!
FYI, I also tried PR you opened to fix this(#6419), but it did not work on my side, producing the following:
Unknown type name 'CTTelephonyNetworkInfo'
Use of undeclared identifier 'CTRadioAccessTechnologyGPRS'
Use of undeclared identifier 'CTRadioAccessTechnologyEdge'
Use of undeclared identifier 'CTRadioAccessTechnologyWCDMA'
Use of undeclared identifier 'CTRadioAccessTechnologyHSDPA'
Use of undeclared identifier 'CTRadioAccessTechnologyHSUPA'
Use of undeclared identifier 'CTRadioAccessTechnologyCDMA1x'
Use of undeclared identifier 'CTRadioAccessTechnologyCDMAEVDORev0'
Use of undeclared identifier 'CTRadioAccessTechnologyCDMAEVDORevA'
Use of undeclared identifier 'CTRadioAccessTechnologyCDMAEVDORevB'
Use of undeclared identifier 'CTRadioAccessTechnologyeHRPD'
Use of undeclared identifier 'CTRadioAccessTechnologyLTE'
Use of undeclared identifier 'CTTelephonyNetworkInfo'
[REQUIRED] Step 1: Describe your environment
[REQUIRED] Step 2: Describe the problem
When trying to use FirebaseCrashlytics in macCatalyst app, following compilation errors happen:
Steps to reproduce:
import Firebase
Opinion
I think this is happening because most of those constants are marked as
API_UNAVAILABLE(macos)
.Probably errors originate from here.
Possible solution - exclude calls to those constants using
#if TARGET_OS_MACCATALYST
, although i'm not 100% sure it's a complete solution for macCatalyst.The text was updated successfully, but these errors were encountered: