Android version #11

Merged
JohnCosta27 merged 12 commits from feat/android-version into main 2025-04-26 11:49:53 +01:00
62 changed files with 1798 additions and 58 deletions
Showing only changes of commit ecd59ec814 - Show all commits

View File

@ -5,6 +5,9 @@ mod state;
pub mod utils;
mod window;
#[cfg(any(target_os = "linux", target_os = "macos", target_os = "windows"))]
mod shortcut;
use state::new_shared_watcher_state;
use window::setup_window;
@ -31,6 +34,7 @@ pub fn desktop() {
])
.setup(|app| {
setup_window(app)?;
shortcut::enable_shortcut(app);
Ok(())
})