Files
cinny-desktop/src-tauri/src/mobile.rs
Max Litruv Boonzaayer 4eae55476f
Some checks failed
Build / build-android (push) Has been cancelled
Build / build-linux (push) Has been cancelled
Build / build-windows (push) Has been cancelled
Add Android APK build support with Tauri 2.x mobile
2026-01-23 22:16:14 +11:00

8 lines
138 B
Rust

//! Mobile-specific entry points for Android and iOS
/// Mobile entry point
#[tauri::mobile_entry_point]
fn main() {
crate::run();
}