-
Notifications
You must be signed in to change notification settings - Fork 494
Open
Labels
platform: androidAndroid specific issuesAndroid specific issuesplugin: dialogtype: bugSomething isn't workingSomething isn't workingtype: feature requestNew feature or enhancementNew feature or enhancement
Milestone
Description
Describe the problem
On Android, when using plugin-dialog to select a file, the API returns only a content resolver identifier (URI) rather than the actual file name. This prevents a user from performing import operations that depend on the file’s name.
- Open the file picker via the Tauri plugin on an Android device.
- Select any file (e.g. example.mp4).
- Inspect the returned payload.
Note:
- If we pick a file from local storage, then we have the name like a typical URL
- If we pick a file from cloud storage (e.g. Google Drive, possibly others), then we don't have the name
Describe the solution you'd like
The plugin should return both:
- A valid URI/path that can be used for reading or copying the file.
- The actual file name (e.g. "example.mp4").
Alternatives considered
N/A
Related
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
platform: androidAndroid specific issuesAndroid specific issuesplugin: dialogtype: bugSomething isn't workingSomething isn't workingtype: feature requestNew feature or enhancementNew feature or enhancement