Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-appsflyer-sdk

Package Overview
Dependencies
Maintainers
6
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-appsflyer-sdk - npm Package Compare versions

Comparing version 6.2.10 to 6.2.20

17

docs/API.md

@@ -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**

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc