Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Updated base SDK's #92

Merged
merged 1 commit into from
May 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
countly:countly-sdk-js@20.11.3
countly:countly-sdk-js@21.11.0
[email protected]
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 21.11.0
* Updated underlying android SDK to 21.11.1
* Updated underlying iOS SDK version to 21.11.2

## 20.11.3
* Added COUNTLY_EXCLUDE_PUSHNOTIFICATIONS flag to disable push notifications altogether in order to avoid App Store Connect warnings.
* Fixed issues related to Push notification crash when notification recieved from other SDK's/Plugins (not from Countly).
Expand Down
2 changes: 1 addition & 1 deletion Countly.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Countly = {};
Countly.serverUrl = "";
Countly.appKey = "";
Countly.ready = false;
Countly.version = "20.11.3";
Countly.version = "21.11.0";
Countly.isDebug = false;
Countly.isInitCalled = false;
if (window.cordova.platformId == "android") {
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'countly:countly-sdk-js',
version: '20.11.3',
version: '21.11.0',
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'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "countly-sdk-js",
"version": "20.11.3",
"version": "21.11.0",
"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",
Expand Down
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="countly-sdk-cordova" version="20.11.3">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="countly-sdk-cordova" version="21.11.0">

<name>Countly Cordova SDK</name>

Expand Down Expand Up @@ -141,7 +141,7 @@

<source-file src="src/android/CountlyCordova.java" target-dir="src/ly/count/android/sdk"/>
<source-file src="src/android/CountlyNative.java" target-dir="src/ly/count/android/sdk"/>
<framework src="ly.count.android:sdk:20.11.11" />
<framework src="ly.count.android:sdk:21.11.1" />

<!-- Push notification -->
<config-file target="AndroidManifest.xml" parent="/manifest/application">
Expand Down
2 changes: 1 addition & 1 deletion src/android/CountlyNative.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class CountlyNative {

public static final String TAG = "CountlyCordovaPlugin";
private String COUNTLY_CORDOVA_SDK_VERSION_STRING = "20.11.3";
private String COUNTLY_CORDOVA_SDK_VERSION_STRING = "21.11.0";
private String COUNTLY_CORDOVA_SDK_NAME = "js-cordovab-android";

private Countly.CountlyMessagingMode pushTokenTypeVariable = Countly.CountlyMessagingMode.PRODUCTION;
Expand Down
2 changes: 1 addition & 1 deletion src/ios/CountlyNative.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
Boolean isInitialized = false;
NSString *const pushPluginApplicationDidBecomeActiveNotification = @"pushPluginApplicationDidBecomeActiveNotification";

NSString* const kCountlyCordovaSDKVersion = @"20.11.3";
NSString* const kCountlyCordovaSDKVersion = @"21.11.0";
NSString* const kCountlyCordovaSDKName = @"js-cordovab-ios";

@interface CountlyFeedbackWidget ()
Expand Down
Loading