Change to UIWindowScene etc. ...?

Hi JUCE devs,

Are there plans for JUCE 9 to move from old, deprecated iOS app / Window management approaches e.g. the deprecated:

- (void) applicationDidFinishLaunching: (UIApplication*) application

To new approaches using UIScene, UIWindowScene, UIWindowSceneDelegate etc. e.g.:

- (UISceneConfiguration *)application:(UIApplication *)application configurationForConnectingSceneSession:(UISceneSession *)connectingSceneSession options:(UISceneConnectionOptions *)options

My specific use case: I’m struggling to get a CarPlay target working in my JUCE-based iOS app - the CarPlay system seems to require Scene support.

See also:

Best wishes, Pete

That was recently added on the develop branch:

Thank you @reuk !

Best wishes, Pete