IOS: timeout on main thread #12382
-
Hey there. Is it possible that there is a timeout on the main thread on IOS? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I know on iOS locking the main thread for an extended period of time can lead to the OS terminating your app, but not entirely sure about Android. If you are in a callee of the FinishedLaunching method of AppDelegate, you get 17 seconds and if you do not return, the app is killed. This might be what is happening, especially if you are triggering these in "app launch" events. |
Beta Was this translation helpful? Give feedback.
I know on iOS locking the main thread for an extended period of time can lead to the OS terminating your app, but not entirely sure about Android.
If you are in a callee of the FinishedLaunching method of AppDelegate, you get 17 seconds and if you do not return, the app is killed. This might be what is happening, especially if you are triggering these in "app launch" events.