This commit is contained in:
parent
258384fd62
commit
ebf14bd96a
2 changed files with 7 additions and 3 deletions
|
|
@ -8,6 +8,7 @@
|
||||||
"main"
|
"main"
|
||||||
],
|
],
|
||||||
"permissions": [
|
"permissions": [
|
||||||
|
"deep-link:default",
|
||||||
"barcode-scanner:default",
|
"barcode-scanner:default",
|
||||||
"barcode-scanner:allow-scan",
|
"barcode-scanner:allow-scan",
|
||||||
"barcode-scanner:allow-cancel"
|
"barcode-scanner:allow-cancel"
|
||||||
|
|
|
||||||
|
|
@ -229,7 +229,7 @@ pub fn run() {
|
||||||
#[cfg(any(target_os = "ios", target_os = "android"))]
|
#[cfg(any(target_os = "ios", target_os = "android"))]
|
||||||
let builder = builder.plugin(tauri_plugin_barcode_scanner::init());
|
let builder = builder.plugin(tauri_plugin_barcode_scanner::init());
|
||||||
|
|
||||||
builder
|
if let Err(error) = builder
|
||||||
.setup(setup_app)
|
.setup(setup_app)
|
||||||
.invoke_handler(tauri::generate_handler![
|
.invoke_handler(tauri::generate_handler![
|
||||||
list_screen_share_sources,
|
list_screen_share_sources,
|
||||||
|
|
@ -237,5 +237,8 @@ pub fn run() {
|
||||||
get_screen_share_capabilities
|
get_screen_share_capabilities
|
||||||
])
|
])
|
||||||
.run(tauri::generate_context!())
|
.run(tauri::generate_context!())
|
||||||
.expect("error while running tauri application");
|
{
|
||||||
|
eprintln!("error while running tauri application: {error}");
|
||||||
|
panic!("error while running tauri application: {error}");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue