我正在研究Xamarin跨平台应用程序,我想从设备存储中选择文档,为此我正在使用Xam.Plugin.FilePicker,当我从pcl项目调用但它在IOS Project中工作时,它在android中工作,它显示错误为only one operation can be active at a time at plugin.filepicker.filepickerimplementation.takemediaasync
,这些是我正在使用的2行
var filePicker = Plugin.FilePicker.CrossFilePicker.Current;
await filePicker.PickFile();
并在info.plist中我还添加了<key>NSUbiquitousContainerIsDocumentScopePublic</key>
<true />
如果没有,他们是否只能通过PCL从IOS Platfrom执行此操作?