Yet another "No apps can perform this action"
See original GitHub issueDescription of the bug
A small subset of our users, seemingly only on Android, receive the “No apps can perform this action” message when trying to use the function that invokes PickFile
. The filetype being selected is a JSON file. We’ve been unable to reproduce the issue in-house.
Platform specs
Please provide the following info if this is a Unity 3D repository.
- Unity version: 2020.3.27f1
- Platform: Android, possibly iOS
- How did you download the plugin: Asset Store
Additional info
Here is some relevant parts of the code in question.
var allowedTypes = new string[] { NativeFilePicker.ConvertExtensionToFileType("json") };
var permission = NativeFilePicker.PickFile((pth) =>
{
//callback content
}, allowedTypes);
It’s worth mentioning that this is happening with version 1.29 of NativeFilePicker. We are working to release an update that upgrades the package to 1.30, but have not been able to test this issue in that update as of yet.
Issue Analytics
- State:
- Created 9 months ago
- Comments:11 (5 by maintainers)
Top Results From Across the Web
No apps can perform this action - XDA Forums
The error says "no apps can perform this action" And sometimes cannot upload file photos in some apps and websites.
Read more >How to Fix "Unable to Find Application to Perform this Action"
You'll need to tap the option that says 'details.' On your device the option may be named something slightly different. Then, pay attention...
Read more >How to fix Reddit app error - No apps can perform this action.
The first thing that you can do to solve this problem is to switch from opening web links externally (using a separate Internet...
Read more >Fix: No Apps Can Perform This Action Reddit 2023
The potential fix of “No Apps Can Perform This Action” is disable the “Open Supported Links” in option in the Reddit app which...
Read more >"No apps can perform this action". Can't open links ...
"No apps can perform this action". Can't open links externally since latest Reddit update. Anyone experiencing this? : r/help.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Try
var allowedTypes = new string[] { "*/*" };
instead.I didn’t, sorry. I’ll add that in a future release and see if I can test it for you.