Add deep linking

This commit is contained in:
kwaroran
2024-10-09 21:19:58 +09:00
parent 19d1c1ef7a
commit a66f1664ef
13 changed files with 251 additions and 11 deletions

View File

@@ -31,6 +31,8 @@ tauri-plugin-dialog = "2"
tauri-plugin-process = "2"
tauri-plugin-shell = "2"
tauri-plugin-http = "2"
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\"))".dependencies]
tauri-plugin-deep-link = "2"
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
@@ -42,5 +44,5 @@ custom-protocol = ["tauri/custom-protocol"]
# crate-type = ["staticlib", "cdylib", "rlib", "lib"]
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-single-instance = "2"
tauri-plugin-single-instance = { version = "2.0.0", features = ["deep-link"] }
tauri-plugin-updater = "2"