-
-
Notifications
You must be signed in to change notification settings - Fork 437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with pickMultiple for Android #317
Comments
I think it is necessary to swap the condition. Example: if (clipData != null && clipData.getItemCount() > 0) {
final int length = clipData.getItemCount();
for (int i = 0; i < length; ++i) {
ClipData.Item item = clipData.getItemAt(i);
results.pushMap(getMetadata(item.getUri()));
}
} else if (uri != null) {
results.pushMap(getMetadata(uri));
} else {
promise.reject(E_INVALID_DATA_RETURNED, "Invalid data returned by intent");
return;
} |
I have the same issue. If i pick multiple files. App Files keeps stoping (Files app of Samsung). |
I fixed with type [ |
me too |
me too |
I'm using pickMultiple method for selecting files from iOS and Android. For iOS it's working properly and nice.
But for Android library is working very strange. In native Intent I can select several files but in final I get only first selected files.
Here example of my code:
The text was updated successfully, but these errors were encountered: