feat: add deep link and notification permissions to mobile and android schemas
- Introduced new permissions for deep link functionality including `allow-get-current`, `allow-is-registered`, `allow-register`, and `allow-unregister`. - Added comprehensive notification permissions such as `allow-notify`, `allow-request-permission`, and others to enhance notification capabilities. - Updated the mobile and android schemas to reflect these changes. - Removed deprecated window state permissions from schemas. - Updated the capabilities schema to include new default permissions for deep link and notification features. - Refactored the Tauri application initialization to support new deep link plugin for mobile platforms.
This commit is contained in:
12
src-tauri/capabilities/default.json
Normal file
12
src-tauri/capabilities/default.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"$schema": "../gen/schemas/mobile-schema.json",
|
||||
"identifier": "default",
|
||||
"description": "Default capability for all windows",
|
||||
"windows": ["*"],
|
||||
"permissions": [
|
||||
"core:default",
|
||||
"shell:default",
|
||||
"notification:default",
|
||||
"deep-link:default"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user