I am trying to get access the to AppDelegate from NotificationContentExtension
like this:
private var appDelegate = UIApplication.shared.delegate as! AppDelegate
I was thinking that the app will never crash, because it won't even launch without appDelegate. But it crashed and the console output is:
Failed to inherit CoreMedia permissions from 21734: (null)
Is it because I can't use a reference to AppDelegate in NotificationContentExtension
?
Thank you.