Skip to content

Commit

Permalink
Merge pull request #110 from adjust/v4221
Browse files Browse the repository at this point in the history
Version 4.22.1
  • Loading branch information
uerceg authored Jun 11, 2020
2 parents c4aef34 + 380b07f commit fc1dac6
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### Version 4.22.1 (11th June 2020)
#### Fixed
- Fixed tag usage for `adjust-android.jar` declaration inside of `plugin.xml` file (now using `lib-file` instead of `source-file`).

#### Native SDKs
- [iOS@v4.22.1][ios_sdk_v4.22.1]
- [Android@v4.22.0][android_sdk_v4.22.0]

---

### Version 4.22.0 (10th June 2020)
#### Added
- Added subscription tracking feature.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is the Cordova SDK of Adjust™. You can read more about Adjust™ at [adjust.com].

N.B. At the moment, SDK 4.22.0 for Cordova supports Android platform version `4.0.0 and higher` and iOS platform version `3.0.0 and higher`.
N.B. At the moment, SDK 4.22.1 for Cordova supports Android platform version `4.0.0 and higher` and iOS platform version `3.0.0 and higher`.

## Table of contents

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.22.0
4.22.1
2 changes: 1 addition & 1 deletion doc/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your Adjust SDK for Cordova to 4.22.0 from 3.4.1
## Migrate your Adjust SDK for Cordova to 4.22.1 from 3.4.1

### Migration procedure

Expand Down
4 changes: 2 additions & 2 deletions example-ionic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AdjustExample",
"version": "4.22.0",
"version": "4.22.1",
"author": "Ionic Framework",
"homepage": "http://ionicframework.com/",
"private": true,
Expand All @@ -26,7 +26,7 @@
"@ionic-native/status-bar": "~4.17.0",
"@ionic/storage": "2.2.0",
"acorn": "^7.1.1",
"com.adjust.sdk": "^4.22.0",
"com.adjust.sdk": "^4.22.1",
"cordova-android": "7.1.4",
"cordova-ios": "^5.1.1",
"cordova-plugin-device": "^2.0.2",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.22.0",
"version": "4.22.1",
"name": "com.adjust.sdk",
"cordova_name": "Adjust SDK Cordova Plugin",
"description": "Cordova plugin for the Adjust SDK",
Expand Down
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.adjust.sdk"
version="4.22.0">
version="4.22.1">

<name>Adjust</name>
<description>Adjust plugin for Cordova</description>
Expand Down Expand Up @@ -59,7 +59,7 @@

<source-file src="src/android/AdjustCordova.java" target-dir="src/com/adjust/sdk" />
<source-file src="src/android/AdjustCordovaUtils.java" target-dir="src/com/adjust/sdk" />
<source-file src="src/android/adjust-android.jar" target-dir="libs" />
<lib-file src="src/android/adjust-android.jar" target-dir="libs" />

<framework src="com.google.android.gms:play-services-analytics:+" />
<framework src="com.android.installreferrer:installreferrer:1.0" />
Expand Down
2 changes: 1 addition & 1 deletion test/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.22.0",
"version": "4.22.1",
"name": "com.adjust.test",
"cordova_name": "Adjust Cordova Test Plugin",
"description": "Cordova Plugin For Adjust SDK Testing",
Expand Down
2 changes: 1 addition & 1 deletion test/plugin/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.adjust.test"
version="4.22.0">
version="4.22.1">

<name>Adjust Test</name>
<description>Adjust Plugin For Cordova SDK Testing</description>
Expand Down
2 changes: 1 addition & 1 deletion www/adjust.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ var Adjust = {
},

getSdkPrefix: function () {
return 'cordova4.22.0';
return 'cordova4.22.1';
},

addSessionCallbackParameter: function(key, value) {
Expand Down

0 comments on commit fc1dac6

Please sign in to comment.