fn main() {
tauri_plugin::Builder::new(&[])
.android_path("android")
.build();
let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap();
let mobile = target_os == "ios" || target_os == "android";
println!("cargo:rustc-check-cfg=cfg(desktop)");
println!("cargo:rustc-check-cfg=cfg(mobile)");
if mobile {
println!("cargo:rustc-cfg=mobile");
} else {
println!("cargo:rustc-cfg=desktop");
}
}