Hello Community! In kotlin multiplatform with IOS...
# multiplatform
s
Hello Community! In kotlin multiplatform with IOS, I am trying to start the app via a link and some parameters: iosstaging://open?userId=1234 Well, the thing is, the app is getting opened via the link. That part works fine. It just does not pass any parameters to the app. This method always gets called (launchOptions is nil): func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { But this one does not (this is where I would expect the url parameters): func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:] ) -> Bool { Have I missed something within the pInfo file? Do I have to declare, besides naming the schemes, that I expect options to be passed? My staging pinfo looks like this: *<key>*CFBundleURLTypes*</key>* <array> <dict> *<key>*CFBundleTypeRole*</key>* *<string>*Editor*</string>* *<key>*CFBundleURLName*</key>* *<string>*de.myapp.app*</string>* *<key>*CFBundleURLSchemes*</key>* <array> *<string>*iosstaging*</string>* </array> </dict> </array> I do not use any sceneDelegates and the outcome is always the same if I start the app fresh or it was already running in the background: App start fine via the link but the parameters (userId) are missing Any help is greatly appreciated