Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions doc/api/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,15 @@
"platforms": {
"ios": false
}
},
"continueWebActivity": {
"description": "Fired when the app is launched via a universal link (iOS) or app link (Android). This event allows the app to handle universal/app links opened in another app.",
"parameters": {
"webpageURL": {
"description": "The URL that was used to launch or resume the app, including path and query parameters.",
"type": "string"
}
}
}
},
"methods": {
Expand Down
3 changes: 2 additions & 1 deletion src/tabris/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ NativeObject.defineEvents(App.prototype, {
terminate: {native: true},
keyPress: {native: true},
backNavigation: {native: true},
certificatesReceived: {native: true}
certificatesReceived: {native: true},
continueWebActivity: {native: true}
});

export function create() {
Expand Down