My problem is exactly like this one App icon is not showing in CallKit UI
I've already added transparent app icon in AppDelegate's didFinishLaunchingWithOptions
method for incoming voice call
configuration.iconTemplateImageData = UIImage.appIconTransparent.pngData()
App icon doesn't show on CallKit UI for client to client call (using twilio).
I've added exactly same line for incoming video call for which it shows correctly. In this case icon is added in VC's init() method.
Why it doesn't show for incoming voice call? Is AppDelegate wrong place to add it?