Add library target for Android builds
Some checks failed
Build / build-linux (push) Successful in 8m20s
Build / build-windows (push) Successful in 8m52s
Build / build-android (push) Failing after 3m27s

This commit is contained in:
2026-01-23 21:42:30 +11:00
parent 9e0997188a
commit b476537f31
4 changed files with 40 additions and 8 deletions

9
src-tauri/src/mobile.rs Normal file
View File

@@ -0,0 +1,9 @@
//! Mobile-specific entry points for Android and iOS
use tauri::{AppHandle, Runtime};
/// Mobile entry point
#[tauri::mobile_entry_point]
fn main() {
crate::run();
}