-
Notifications
You must be signed in to change notification settings - Fork 302
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
(Android) uploads: PlatformException with "Can't handle the provided file type." #1446
Comments
Hmm. Looks like checking with so From lower down in that doc, the use of Intent.ACTION_OPEN_DOCUMENT looks fine (though possibly Intent.ACTION_GET_CONTENT would be better, not sure). ACTION_PICK isn't recommended there for images — it suggests again using ACTION_GET_CONTENT or ACTION_OPEN_DOCUMENT — but that can't explain the failure on the "upload file" button. Debugging questions for the user, which might help us investigate:
|
From looking in the file_picker tracker, here's an old issue with similar symptoms: but it was fixed in 2020. And here's a report which caused me to think of the "profiles" hypothesis: If the user is running Zulip in a profile that does not have access to a file explorer app, then that would explain it. |
There is no PR on this issue, I assume it's open and unsolved. I'm starting to work on this now. I'll make sure to read the contribution guide first. Thanks |
Added a note to the issue description about a possible fix. And thanks @Quelaan1, I've just assigned this to you. |
Could you please unassign me from this issue? I unfortunately no longer have the bandwidth to work on it. Thanks! @chrisbobbe |
A user writes to support@:
Here's the error dialog from the user's screenshot:
More details from the user:
They also sent a video showing that this error dialog appears (identically) when they press the paperclip (upload-file) button or the picture (upload-media) button. It appears immediately when they press the button; a "file explorer" interface isn't offered before the dialog appears. The video shows the camera (upload-from-camera) button working as expected without errors.
We should debug this so that the buttons work, if that's within our control, otherwise, to give an actionable error message that makes sense to users.
Reading the
file_picker
implementation, which we use for the paperclip and picture buttons, I see that this error happens when aintent.resolveActivity
call returns null:So it looks like there's an issue accessing the file-picker UI; its activity isn't being found.
I expect the
type
to be*/*
for the upload-file codepath andimage/*,video/*
for the upload-media codepath.UPDATES:
file_picker
to the first-party pluginfile_selector
; this is Switch from file_picker package to first-party file_selector and/or image_picker #855<queries>
element forACTION_OPEN_DOCUMENT
, infile_picker
and/or our app, on the theory that "package visibility filtering" is why the file-picker UI isn't being opened for this user. Discussion: #mobile-team > #F1446 Android upload issue @ 💬The text was updated successfully, but these errors were encountered: