You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sdl_handleSystemRequestLaunchApp function in SDLProxy.m calls [[UIApplication sharedApplication] openURL], this call can cause warning by Xcode main thread checker because it can be executed other than the main thread.
sdl_handleSystemRequestLaunchApp should be called only in the main thread.
Reproduction Steps
Enable “Main Thread Checker” in Xcode, and run application in debug mode.
Connect app to HU
Make app foreground on HS
4. Run app on HU
Run another app on HU
Observe console log in HS
Expected Behavior
MainThread checker warning is NOT logged.
Observed Behavior
MainThread checker warning is logged.
OS & Version Information
iOS Version: 13.0
SDL iOS Version: 6.3.1
Testing Against: N/A
Test Case, Sample Code, and / or Example App
I will create PR
The text was updated successfully, but these errors were encountered:
Bug Report
sdl_handleSystemRequestLaunchApp
function inSDLProxy.m
calls[[UIApplication sharedApplication] openURL]
, this call can cause warning by Xcode main thread checker because it can be executed other than the main thread.sdl_handleSystemRequestLaunchApp
should be called only in the main thread.Reproduction Steps
4. Run app on HU
Expected Behavior
MainThread checker warning is NOT logged.
Observed Behavior
MainThread checker warning is logged.
OS & Version Information
Test Case, Sample Code, and / or Example App
I will create PR
The text was updated successfully, but these errors were encountered: