Good afternoon everyone today we have received a call from Apple saying that Callkit, included in our app, will block the app approval process.
Apple discovered an i
By default your device builds (including the one you submit to Apple) should have the managed linker enabled (with Link SDK setting).
That will remove any trace of CallKit (and a lot of other unused stuff) from the Xamarin.iOS.dll that ships with your application.
That is unless it's used elsewhere inside your application (or 3rd party code), in which case the linker won't be able to remove it.
I had the same issue. I had to use find / -type f -exec grep -H 'CallKit' {} \;
inside your project folder to find which app/framework is using it. It was a third party framework using CallKit.