Is it possible to properly start the iOS app using...
# multiplatform
j
Is it possible to properly start the iOS app using a UISceneDelegate written in Kotlin? I tried inserting
ComposeAppSceneDelegate
into the Info.plist in the usual manner, but when I run the app I get a console message saying it couldn't find that class
ComposeAppSceneDelegate
. I even tried using @ObjcName. My declaration is like this
Copy code
@ObjCName("ComposeAppSceneDelegate", exact = true)
class SceneDelegate : NSObject(), UISceneDelegateProtocol {
3
After more research I found that we cannot currently implement UISceneDelegate or UIAppDelegate in kotlin, at least for now.