https://developer.apple.com/documentation/uikit/app_and_environment/managing_your_app_s_life_cycle
Scene support is an opt-in feature
Apps must explicitly opt in to scenes, which you do by updating your app’s configuration settings.
In iOS 12 and earlier, and in apps that don't support scenes, UIKit delivers all life-cycle events to the UIApplicationDelegate object.
However, apps by default, which aren't opted in, have a scene delegate and receive all life-cycle event reporting through the scene delegate (not the app delegate). This contradicts Apple's documentation, which wouldn't be the first time. Shouldn't the documentation instead state that multiple-scene support is an opt-in feature?