cordova-plugin-appsflyer-sdk
Advanced tools
Comparing version 6.2.10 to 6.2.20
@@ -45,2 +45,3 @@ # API | ||
| [`addPushNotificationDeepLinkPath`](#addPushNotificationDeepLinkPath) | `(path)` | configure push notification deep link resolution | | ||
| [`setResolveDeepLinkURLs`](#setResolveDeepLinkURLs) | `(urls)` | get the OneLink from click domains | | ||
@@ -616,2 +617,18 @@ | ||
--- | ||
##### <a id="setResolveDeepLinkURLs"> **`setResolveDeepLinkURLs(urls): void`** | ||
Use this API to get the OneLink from click domains that launch the app. Make sure to call this API before SDK initialization. | ||
*Example:* | ||
```javascript | ||
let urls = ['clickdomain.com', 'anotherclickdomain.com']; | ||
window.plugins.appsFlyer.setResolveDeepLinkURLs(urls); | ||
``` | ||
| parameter | type | description | | ||
| ----------- |-----------------------------|--------------| | ||
| `urls` | `String[]` | strings array of domains | | ||
--- | ||
### <a id="deep-linking-tracking"> Deep linking Tracking | ||
@@ -618,0 +635,0 @@ |
# Release Notes | ||
### 6.2.20 | ||
Release date **February 8, 2021** | ||
Release type: Major / **Minor** / Hotfix | ||
**Overview and Highlights:** | ||
- Add setResolveDeepLink api | ||
### 6.2.10 | ||
@@ -3,0 +11,0 @@ Release date **January 27, 2021** |
{ | ||
"name": "cordova-plugin-appsflyer-sdk", | ||
"version": "6.2.10", | ||
"version": "6.2.20", | ||
"description": "Cordova AppsFlyer SDK Plugin", | ||
@@ -5,0 +5,0 @@ "cordova": { |
# Release Notes | ||
### 6.2.20 | ||
Release date **February 8, 2021** | ||
Release type: Major / **Minor** / Hotfix | ||
**Overview and Highlights:** | ||
- Add setResolveDeepLink api | ||
### 6.2.10 | ||
Release date **January 27, 2021** | ||
Release type: Major / **Minor** / Hotfix | ||
**Overview and Highlights:** | ||
- Add Unified DDL | ||
### 6.2.0 | ||
@@ -3,0 +19,0 @@ Release date **January 17, 2021** |
@@ -320,3 +320,13 @@ var exec = require('cordova/exec'), | ||
}; | ||
/** | ||
* Use this API to get the OneLink from click domains that launch the app. Make sure to call this API before SDK initialization. | ||
* @param urls | ||
*/ | ||
AppsFlyer.prototype.setResolveDeepLinkURLs = function (urls) { | ||
exec(null, null, 'AppsFlyerPlugin', 'setResolveDeepLinkURLs', [urls]); | ||
}; | ||
module.exports = new AppsFlyer(); | ||
})(window); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
274797
785