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

clevertap-cordova

Package Overview
Dependencies
Maintainers
2
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clevertap-cordova - npm Package Compare versions

Comparing version 2.0.5 to 2.0.7

9

CHANGELOG.md
Change Log
==========
Version 2.0.7 *(11 May, 2018)*
-------------------------------------------
Update for Android support library version
Update for CleverTap Android SDK v 3.1.9
Update for CleverTap iOS SDK v 3.1.7
Support for Android O Notification Channels with custom sound
New APIs for GDPR compliance
Adds Android support for recordScreenView API
Version 2.0.5 *(04 January, 2018)*

@@ -5,0 +14,0 @@ -------------------------------------------

2

package.json
{
"name": "clevertap-cordova",
"version": "2.0.5",
"version": "2.0.7",
"description": "CleverTap Plugin for Cordova/PhoneGap",

@@ -5,0 +5,0 @@ "cordova": {

@@ -8,4 +8,4 @@ CleverTap Cordova Plugin

- [CleverTap Android SDK version 3.1.8](https://github.com/CleverTap/clevertap-android-sdk/releases/tag/3.1.8)
- [CleverTap iOS SDK version 3.1.6](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/3.1.6)
- [CleverTap Android SDK version 3.1.9](https://github.com/CleverTap/clevertap-android-sdk/releases/tag/3.1.9)
- [CleverTap iOS SDK version 3.1.7](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/3.1.7)

@@ -12,0 +12,0 @@ ## Install

@@ -27,2 +27,12 @@ // Copyright (C) 2015 CleverTap

}
//Enables tracking opt out for the currently active user.
CleverTap.prototype.setOptOut = function (value) {
cordova.exec(null, null, "CleverTapPlugin", "setOptOut", [value]);
}
//Enables the reporting of device network related information, including IP address. This reporting is disabled by default.
CleverTap.prototype.enableDeviceNetworkInfoReporting = function (value) {
cordova.exec(null, null, "CleverTapPlugin", "enableDeviceNetworkInfoReporting", [value]);
}

@@ -47,2 +57,6 @@ /*******************

CleverTap.prototype.createNotificationChannelWithSound = function (channelID, channelName, channelDescription, importance, showBadge,sound) {
cordova.exec(null,null, "CleverTapPlugin", "createNotificationChannelWithSound", [channelID, channelName, channelDescription, importance, showBadge, sound]);
}
//Create Notification Channel with Group ID for Android O

@@ -53,2 +67,6 @@ CleverTap.prototype.createNotificationChannelWithGroupId = function (channelID, channelName, channelDescription, importance, groupId, showBadge) {

CleverTap.prototype.createNotificationChannelWithGroupIdAndSound = function (channelID, channelName, channelDescription, importance, groupId, showBadge, sound) {
cordova.exec(null,null, "CleverTapPlugin", "createNotificationChannelWithGroupIdAndSound", [channelID, channelName, channelDescription, importance, groupId, showBadge, sound]);
}
//Create Notification Channel Group for Android O

@@ -55,0 +73,0 @@ CleverTap.prototype.createNotificationChannelGroup = function (groupId, groupName) {

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

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

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