Pontus Tengroth
Pontus Tengroth
Anyone find a solution to this?
Solved it by providing a file:// path instead of a content:// path
> @pontustengroth how did you convert from content:// to file:// ? ``` const uri = FileSystem.cacheDirectory + `file-${makeid(16)}`; await FileSystem.copyAsync({ from: "content://path", to: uri, }); ``` Then sending uri for...
Add in the NSExtensionActivationRule dict in the share menu info.plist ``` NSExtensionActivationSupportsFileWithMaxCount 10 // Amount of files it will be able to share at once ``` Worked for me in...