diff --git a/.versions b/.versions index 1bc9bee..2492e49 100644 --- a/.versions +++ b/.versions @@ -1,2 +1,2 @@ -countly:countly-sdk-js@20.11.1 +countly:countly-sdk-js@20.11.2 meteor@1.9.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 31b0f3d..f1f5a31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 20.11.2 +* Moving a push related broadcast receiver declaration to the manifest to comply with 'PendingIntent' checks +* Updated underlying android SDK to 20.11.9 +* Underlying iOS SDK version is 20.11.2 + ## 20.11.1 * "setLoggingEnabled" call issues fixed. * Updated underlying android SDK to 20.11.8 diff --git a/Countly.js b/Countly.js index e5bcd2e..8d3e296 100644 --- a/Countly.js +++ b/Countly.js @@ -2,7 +2,7 @@ Countly = {}; Countly.serverUrl = ""; Countly.appKey = ""; Countly.ready = false; -Countly.version = "20.11.1"; +Countly.version = "20.11.2"; Countly.isDebug = false; Countly.isInitCalled = false; if (window.cordova.platformId == "android") { diff --git a/package.js b/package.js index 38225ff..1c7591f 100644 --- a/package.js +++ b/package.js @@ -1,6 +1,6 @@ Package.describe({ name: 'countly:countly-sdk-js', - version: '20.11.1', + version: '20.11.2', summary: 'Countly is an innovative, real-time, open source mobile analytics and push notifications platform. It collects data from mobile devices, and visualizes this information to analyze mobile application usage and end-user behavior. There are two parts of Countly: the server that collects and analyzes data, and mobile SDK that sends this data. Both parts are open source with different licensing terms.', git: 'https://github.com/Countly/countly-sdk-cordova.git', documentation: 'README.md' diff --git a/package.json b/package.json index 77ff050..718906b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "countly-sdk-js", - "version": "20.11.1", + "version": "20.11.2", "description": "Countly is an innovative, real-time, open source mobile analytics and push notifications platform. It collects data from mobile devices, and visualizes this information to analyze mobile application usage and end-user behavior. There are two parts of Countly: the server that collects and analyzes data, and mobile SDK that sends this data. Both parts are open source with different licensing terms.", "cordova": { "id": "countly-sdk-js", diff --git a/plugin.xml b/plugin.xml index abf735c..06e228f 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + Countly Cordova SDK @@ -141,7 +141,7 @@ - + diff --git a/src/android/CountlyNative.java b/src/android/CountlyNative.java index 9dc199e..84136fd 100644 --- a/src/android/CountlyNative.java +++ b/src/android/CountlyNative.java @@ -36,7 +36,7 @@ public class CountlyNative { public static final String TAG = "CountlyCordovaPlugin"; - private String COUNTLY_CORDOVA_SDK_VERSION_STRING = "20.11.1"; + private String COUNTLY_CORDOVA_SDK_VERSION_STRING = "20.11.2"; private String COUNTLY_CORDOVA_SDK_NAME = "js-cordovab-android"; private Countly.CountlyMessagingMode pushTokenTypeVariable = Countly.CountlyMessagingMode.PRODUCTION; diff --git a/src/ios/CountlyNative.m b/src/ios/CountlyNative.m index d31d06c..fe96334 100644 --- a/src/ios/CountlyNative.m +++ b/src/ios/CountlyNative.m @@ -19,7 +19,7 @@ Boolean isInitialized = false; NSString *const pushPluginApplicationDidBecomeActiveNotification = @"pushPluginApplicationDidBecomeActiveNotification"; -NSString* const kCountlyCordovaSDKVersion = @"20.11.1"; +NSString* const kCountlyCordovaSDKVersion = @"20.11.2"; NSString* const kCountlyCordovaSDKName = @"js-cordovab-ios"; @interface CountlyFeedbackWidget ()