diff --git a/doc/api/app.json b/doc/api/app.json index b6d509ff..53533866 100644 --- a/doc/api/app.json +++ b/doc/api/app.json @@ -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": { diff --git a/src/tabris/App.js b/src/tabris/App.js index e2f470d7..8c757702 100644 --- a/src/tabris/App.js +++ b/src/tabris/App.js @@ -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() {