tauri-plugin-android-accessibility 0.2.2

A Tauri plugin that supports Android accessibility features, allowing Tauri applications to interact with Android's accessibility services for enhanced functionality and user experience.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const COMMANDS: &[&str] = &[
  "ping",
  "check_accessibility_enabled",
  "open_accessibility_settings",
  "get_frontmost_ui_tree",
  "click_node",
  "perform_gesture",
  "perform_global_action",
  "perform_node_action",
  "type_text",
];

fn main() {
  tauri_plugin::Builder::new(COMMANDS)
    .android_path("android")
    .ios_path("ios")
    .build();
}