-
Notifications
You must be signed in to change notification settings - Fork 4
Feat/wallet more verification docs support #357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a3bed7d
5feb231
173a474
d50e381
257284e
979940a
9a2e2bc
aec52ad
d4bab70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
{ | ||
"$schema": "../gen/schemas/mobile-schema.json", | ||
"identifier": "mobile-capability", | ||
"description": "Capability for the main window on mobile", | ||
"windows": ["main"], | ||
"permissions": [ | ||
"core:default", | ||
"opener:default", | ||
"store:default", | ||
"biometric:default", | ||
"barcode-scanner:default", | ||
"deep-link:default", | ||
"crypto-hw:default" | ||
], | ||
"platforms": ["iOS", "android"] | ||
} | ||
"$schema": "../gen/schemas/mobile-schema.json", | ||
"identifier": "mobile-capability", | ||
"description": "Capability for the main window on mobile", | ||
"windows": [ | ||
"main" | ||
], | ||
"permissions": [ | ||
"core:default", | ||
"opener:default", | ||
"store:default", | ||
"biometric:default", | ||
"barcode-scanner:default", | ||
"deep-link:default", | ||
"crypto-hw:default", | ||
"notification:default" | ||
], | ||
"platforms": [ | ||
"iOS", | ||
"android" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
"active": true, | ||
"targets": "all", | ||
"android": { | ||
"versionCode": 2 | ||
"versionCode": 6 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep Tauri app version in sync with the release.
🤖 Prompt for AI Agents
|
||
}, | ||
"icon": [ | ||
"icons/32x32.png", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Device ID lacks persistence mechanism.
The function generates a new UUID every time
DEVICE_ID
is not set in the environment. This means each app restart will produce a different device ID, which could break device registration and notification delivery.Consider persisting the generated device ID to storage (e.g., using Tauri's store plugin) or ensure
DEVICE_ID
is consistently set in the environment across restarts.🤖 Prompt for AI Agents