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

Commit

Permalink
— Updated underlying android SDK to 20.11.9 (#88)
Browse files Browse the repository at this point in the history
— Updated SDK version to 20.11.2 for new release
  • Loading branch information
ijunaid authored Aug 6, 2021
1 parent feb2ca7 commit 90d8c07
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
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.1
countly:countly-sdk-js@20.11.2
meteor@1.9.2
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.1";
Countly.version = "20.11.2";
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.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'
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.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",
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.1">
<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.2">

<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.8" />
<framework src="ly.count.android:sdk:20.11.9" />

<!-- 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.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;
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.1";
NSString* const kCountlyCordovaSDKVersion = @"20.11.2";
NSString* const kCountlyCordovaSDKName = @"js-cordovab-ios";

@interface CountlyFeedbackWidget ()
Expand Down

0 comments on commit 90d8c07

Please sign in to comment.