mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
75617a6a92
* feat: android deeplinks * feat: explicit app link declarations * feat: add ios code * fix: add ios deeplink adaptation * feat: ios working (some swift plugin api improvements needed) * fix: revert ios to prior logic * fix(cleanup): regen android files with old names * fix: web link criteria * fix: conditional auto verify intent filter for android app links * fix: default to true * fix: typo * fix: pnpm version * cleanup * fix: web link regression * trim androidmanifest update * fix deep link validation broken due to appLink=true default * implement update_info_plist from https://github.com/tauri-apps/tauri/pull/13888 * fix: remove old patch crates * fix: use latest patch tauri * lint --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
60 lines
1.1 KiB
JSON
60 lines
1.1 KiB
JSON
{
|
|
"productName": "deep-link-example",
|
|
"version": "0.1.0",
|
|
"identifier": "com.tauri.deep-link-example",
|
|
"build": {
|
|
"devUrl": "http://localhost:1420",
|
|
"frontendDist": "../dist",
|
|
"beforeDevCommand": "pnpm dev",
|
|
"beforeBuildCommand": "pnpm build"
|
|
},
|
|
"app": {
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"windows": [
|
|
{
|
|
"fullscreen": false,
|
|
"height": 600,
|
|
"resizable": true,
|
|
"title": "tauri-app",
|
|
"width": 800
|
|
}
|
|
]
|
|
},
|
|
"plugins": {
|
|
"whatever": "helloworld",
|
|
"sec": {
|
|
"hello": "world"
|
|
},
|
|
"deep-link": {
|
|
"mobile": [
|
|
{
|
|
"host": "fabianlars.de",
|
|
"pathPrefix": ["/intent"]
|
|
},
|
|
{
|
|
"host": "tauri.app"
|
|
},
|
|
{
|
|
"scheme": ["taurideeplink"]
|
|
}
|
|
],
|
|
"desktop": {
|
|
"schemes": ["fabianlars", "my-tauri-app"]
|
|
}
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"category": "DeveloperTool",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|