PBomermustekiin
PBomermustekiin
@ltOgt hi, can u share your RSIShareViewController.swift file please?
same issue, handled crash basically with this codes but i dont understand why shared media become null, it was not coming before. ``` private func decode(data: Data) -> [SharedMediaFile] {...
@taosimple It is already like that: ``` // ShareViewController.swift // Sharing Extension // // Created by Kasem Mohamed on 2019-05-30. // Copyright © 2019 The Chromium Authors. All rights reserved....
> [@PBomermustekiin](https://github.com/PBomermustekiin) Can you try and delete the following lines from your `Info.plist`? > > ``` > AppGroupId > $(CUSTOM_GROUP_ID) > ``` > > It looks like CUSTOM_GROUP_ID is an...
> I mean I had the same issue as you and I got it to work by removing those two lines from the Info.plist. This won't remove the groups, I...
**I deleted for both Info.plist (share extension and runner) =>** not worked **I deleted for only Runner Info.plist =>** not worked **I deleted for only Share Extension Info.plist =>** not...
When this part is missing in info.plist, app function is acting like in screen record which i share on top. So in ios 18.3.1, somehow app can not access or...
> I think I found the fix, adjust the `redirectToHostApp` : > > ``` > private func redirectToHostApp() { > // Load IDs as they may not be loaded yet...
``` if #available(iOS 18.0, *) { while responder != nil { if let application = responder as? UIApplication { application.open(url!, options: [:], completionHandler: nil) } responder = responder?.next } }...
> I found this redirectToHostApp implementation in a similar package, flutter_sharing_intent. They claim it is working: [bhagat-techind/flutter_sharing_intent#64 (comment)](https://github.com/bhagat-techind/flutter_sharing_intent/issues/64#issuecomment-2554477341) > > Maybe you guys can use this approach to fix the...