mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-27 11:56:05 +02:00
8df28a9875
* chore: update deps, make mobile script paths relative * feat(biometric): setup plugin folder * feat: implement iOS * add api * android * fix plugin name * also check empty info.plist entry * add example * fix android * supress * lint * better explanation * add partners & contributed by * change ext * license headers * update vite * add covector setup * tauri/dox removed * add example * docs --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
17 lines
380 B
Rust
17 lines
380 B
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
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);
|
|
}
|
|
}
|