Skip to content

Commit

Permalink
Merge pull request #198 from adjust/v4321
Browse files Browse the repository at this point in the history
Version 4.32.1
  • Loading branch information
uerceg authored Nov 14, 2022
2 parents 328ea98 + 49f4c09 commit 87f06f7
Show file tree
Hide file tree
Showing 11 changed files with 520 additions and 526 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.32.1 (14th November 2022)
#### Fixed
- Fixed conversion bug which caused `transaction_date` parameter of iOS subscription tracking to be wrongly formatted.

#### Native SDKs
- [[email protected]][ios_sdk_v4.32.1]
- [[email protected]][android_sdk_v4.32.0]

---

### Version 4.32.0 (11th October 2022)
#### Added
- Added partner sharing settings to the third party sharing feature.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.32.0
4.32.1
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ PODS:
- React-jsinspector (0.69.4)
- React-logger (0.69.4):
- glog
- react-native-adjust (4.32.0):
- react-native-adjust (4.32.1):
- Adjust (= 4.32.1)
- React-Core
- React-perflogger (0.69.4)
Expand Down Expand Up @@ -541,7 +541,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: a27badbbdbc0ff781813370736a2d1c7261181d4
React-jsinspector: 8a3d3f5dcd23a91e8c80b1bf0e96902cd1dca999
React-logger: 1088859f145b8f6dd0d3ed051a647ef0e3e80fad
react-native-adjust: 827d342fbcad3bb5632799d80b006e431132f40d
react-native-adjust: 8b0e252bd8a20ec4144ee2dc8f86d862635ce5db
React-perflogger: cb386fd44c97ec7f8199c04c12b22066b0f2e1e0
React-RCTActionSheet: f803a85e46cf5b4066c2ac5e122447f918e9c6e5
React-RCTAnimation: 19c80fa950ccce7f4db76a2a7f2cf79baae07fc7
Expand Down
510 changes: 251 additions & 259 deletions example/yarn.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Adjust.getAmazonAdId = function(callback) {
};

Adjust.getSdkVersion = function(callback) {
module_adjust.getSdkVersion("react-native4.32.0", callback);
module_adjust.getSdkVersion("react-native4.32.1", callback);
};

Adjust.setReferrer = function(referrer) {
Expand Down Expand Up @@ -242,7 +242,7 @@ Adjust.onPause = function(testParam) {
// AdjustConfig

var AdjustConfig = function(appToken, environment) {
this.sdkPrefix = "react-native4.32.0";
this.sdkPrefix = "react-native4.32.1";
this.appToken = appToken;
this.environment = environment;
this.logLevel = null;
Expand Down
2 changes: 1 addition & 1 deletion ios/AdjustSdk.m
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ @implementation AdjustSdk

// Transaction date.
if ([self isFieldValid:transactionDate]) {
NSTimeInterval transactionDateInterval = [transactionDate doubleValue];
NSTimeInterval transactionDateInterval = [transactionDate doubleValue] / 1000.0;
NSDate *oTransactionDate = [NSDate dateWithTimeIntervalSince1970:transactionDateInterval];
[subscription setTransactionDate:oTransactionDate];
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-adjust",
"description": "Adjust React Native SDK",
"version": "4.32.0",
"version": "4.32.1",
"main": "index.js",
"author": "Adjust GmbH",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion plugins/oaid/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-adjust-oaid",
"description": "Adjust React Native OAID plugin",
"version": "4.32.0",
"version": "4.32.1",
"main": "index.js",
"author": "Adjust GmbH",
"license": "MIT",
Expand Down
8 changes: 4 additions & 4 deletions test/app/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,10 @@ PODS:
- React-jsinspector (0.69.4)
- React-logger (0.69.4):
- glog
- react-native-adjust (4.32.0):
- react-native-adjust (4.32.1):
- Adjust (= 4.32.1)
- React-Core
- react-native-adjust-test (4.32.0):
- react-native-adjust-test (4.32.1):
- React
- React-perflogger (0.69.4)
- React-RCTActionSheet (0.69.4):
Expand Down Expand Up @@ -546,8 +546,8 @@ SPEC CHECKSUMS:
React-jsiexecutor: a27badbbdbc0ff781813370736a2d1c7261181d4
React-jsinspector: 8a3d3f5dcd23a91e8c80b1bf0e96902cd1dca999
React-logger: 1088859f145b8f6dd0d3ed051a647ef0e3e80fad
react-native-adjust: 827d342fbcad3bb5632799d80b006e431132f40d
react-native-adjust-test: 5aedfc8c31460a0ad2234e7ae658a45e34b31fea
react-native-adjust: 8b0e252bd8a20ec4144ee2dc8f86d862635ce5db
react-native-adjust-test: 58dc29358295bb087d22155223a31f060470d237
React-perflogger: cb386fd44c97ec7f8199c04c12b22066b0f2e1e0
React-RCTActionSheet: f803a85e46cf5b4066c2ac5e122447f918e9c6e5
React-RCTAnimation: 19c80fa950ccce7f4db76a2a7f2cf79baae07fc7
Expand Down
500 changes: 246 additions & 254 deletions test/app/yarn.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-adjust-test",
"description": "Adjust Test Plugin For React Native SDK",
"version": "4.32.0",
"version": "4.32.1",
"author": "Adjust GmbH",
"license": "MIT",
"keywords": [
Expand Down

0 comments on commit 87f06f7

Please sign in to comment.