mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 08:31:35 +03:00
13 lines
212 B
Rust
13 lines
212 B
Rust
|
use std::process::exit;
|
||
|
|
||
|
fn main() {
|
||
|
if let Err(error) = tauri_build::mobile::PluginBuilder::new()
|
||
|
.android_path("android")
|
||
|
.ios_path("ios")
|
||
|
.run()
|
||
|
{
|
||
|
println!("{error:#}");
|
||
|
exit(1);
|
||
|
}
|
||
|
}
|