Hey guys i am trying to use coroutines on IOS with KMM i am currently using 1.5.0 and have multiple issues happening. I tried to use GlobalDispatch or CoroutinesScope and have multiple nested launch one after another it works good on Android but on IOS runs only if i call runBlocking when i start them. I either get the error to use runBlocking or that my method doesn't implement @throws what can i do?
Function doesn't have or inherit @Throws annotation and thus exception isn't propagated from Kotlin to Objective-C/Swift as NSError.
Do i need to implent something specific on IOS or its already done?