Is the file picker dualog in tauri-plugin-dialog ready to use in any capacity yet? It looks like there's at least an implementation in the github repo, but every time I try to build with cargo tauri android build, it fails with the error message method not found in FileDialogBuilder<Wry<EventLoopMessage>> on the line app().dialog().file().save_file(...). Is there a way to get an implementation of the android file picker, no matter how bleeding-edge? Or is there another workaround I should use for Android? I've tried various versions of the tauri-plugin-dialog crate, including 2.0.0-alpha.3 and referencing the github repo directly.
Secondarily, is there a version of the dialogs that uses Futures or is otherwise .awaitable? I'd like to use them in a command.
Thanks!