I upgraded from Xcode 10.2 to Xcode 11 and encountered the following linker error.
Native linking failed, undefined Objective-C class: CTTelephonyNetworkInfo. The symbol '_OBJC_CLASS_$_CTTelephonyNetworkInfo' could not be found in any of the libraries or frameworks linked with your application.
I used the Xamarin.Essential Connectivity module as follow:
result = (Connectivity.NetworkAccess == NetworkAccess.Internet);
There is a change in CTTelephoneNetworkInfo in iOS (https://docs.microsoft.com/en-us/xamarin/ios/release-notes/api-changes/ios-12-14-0-12-99-4)
Could this be the issue? Thanks.