Multiple:true option is not working in OnePlus Android (Version: 14),bug #165
Replies: 2 comments 3 replies
-
Unfortunately, we can only offer support for the latest versions. You should update to Capacitor 6. |
Beta Was this translation helpful? Give feedback.
-
@robingenz , I am trying to create a blob with the following code and getting a response as an empty object {}. Does these methods (convertFileSrc and fetch) required any additional level permissions from native/core Android and iOS files. As the webpath is showing as //localhost:8080/ on the mobile, do we need to modify anything in info.plist / AndroidManifest.xml files? to access them. If not what could be the reason for empty response though there is a valid webpath. Could you please help me with the solution. |
Beta Was this translation helpful? Give feedback.
-
Hi @robingenz ,
We are using capacitor 4 and file picker of 0.6.3 versions in our application.
Due to some limitations we cannot upgrade capacitor version to 5 at this movemet.
With the above combination , we are encountering multiple selection issue issue.
multiple:true option is not working in OnePlus Android 14 version device.
But Its working as expected in Google pixel and Samsung devices.
Code snippet
const pickMedia = async () => { const result = await FilePicker.pickMedia({ multiple: true, }); };
const pickFiles = async () => {const result = await FilePicker.pickFiles({types: ['image/png'],multiple: true,});};
Expected :
Should be able to select multiple photos/documents in OnePlus android 14 version mobile device as well.
Please help us with this issue how can we achieve multiple selection.
Beta Was this translation helpful? Give feedback.
All reactions