-
Notifications
You must be signed in to change notification settings - Fork 457
feat(IntegrationApp): add SceneDelegate support and update Info.plist for scene management in IntegrationApp #1069
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
…ement - Introduced SceneDelegate for better scene lifecycle management in the IntegrationApp. - Updated Info.plist files to include scene configuration and support for multiple scenes. - Cleaned up AppDelegate by removing the window property and adding scene lifecycle methods. - Adjusted project settings and bundle identifiers for consistency.
|
| <string/> | ||
| </dict> | ||
| </plist> | ||
| <dict> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you revert this plist update?
| ); | ||
| OTHER_LDFLAGS = ""; | ||
| PRODUCT_BUNDLE_IDENTIFIER = com.facebook.WebDriverAgentLib; | ||
| PRODUCT_BUNDLE_IDENTIFIER = "--com.ahmet.WebDriverAgentRunner"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert these project updates. Only SceneDelegate related changes are expected
|
|
||
| #pragma mark - UISceneSession Lifecycle | ||
|
|
||
| - (UISceneConfiguration *)application:(UIApplication *)application configurationForConnectingSceneSession:(UISceneSession *)connectingSceneSession options:(UISceneConnectionOptions *)options { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like UISceneConfiguration, UISceneSession and UISceneConnectionOptions are available since ios 13. Still this project's target iOS is set to 12, so could you apply this for ios 13+ only?
…ement