I've recently upgraded my react-native SDK version to 0.73,
But according to the Upgrade Helper here the AppDelegate interface definition changed from
@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate>
to
@interface AppDelegate : RCTAppDelegate
But as my project uses "UserNotifications" which should be used to extend/implement the AppDelegate interface, I couldn't figure out how to extend this new interface.
Alrighty, found it here: https://github.com/zo0r/react-native-push-notification/issues/2344
To extend the AppDelegate interface with the latest react-native, I should use the obvious