Skip to content

Commit c59b77b

Browse files
authored
Merge pull request #253 from adjust/v502
Version 5.0.2
2 parents f8a6dfd + 0f61c5e commit c59b77b

File tree

13 files changed

+35
-22
lines changed

13 files changed

+35
-22
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### Version 5.0.2 (23rd September 2024)
2+
#### Fixed
3+
- Fixed `Adjust.modulemap not found` error in certain CocoaPods integration cases.
4+
- Fixed occasional ANRs while reading install referrer from Shared Preferences during the SDK initialization.
5+
6+
#### Native SDKs
7+
- [[email protected]][ios_sdk_v5.0.1]
8+
- [[email protected]][android_sdk_v5.0.1]
9+
10+
---
11+
112
### Version 5.0.1 (10th September 2024)
213
#### Fixed
314
- Added missing `AdjustDeeplink` class export to `index.d.ts` (https://github.com/adjust/react_native_sdk/pull/246).
@@ -687,6 +698,7 @@ In case you were using beta version of the SDK v5, please switch to the official
687698
[ios_sdk_v4.38.0]: https://github.com/adjust/ios_sdk/tree/v4.38.0
688699
[ios_sdk_v4.38.2]: https://github.com/adjust/ios_sdk/tree/v4.38.2
689700
[ios_sdk_v5.0.0]: https://github.com/adjust/ios_sdk/tree/v5.0.0
701+
[ios_sdk_v5.0.1]: https://github.com/adjust/ios_sdk/tree/v5.0.1
690702

691703
[android_sdk_v4.10.4]: https://github.com/adjust/android_sdk/tree/v4.10.4
692704
[android_sdk_v4.11.0]: https://github.com/adjust/android_sdk/tree/v4.11.0
@@ -725,3 +737,4 @@ In case you were using beta version of the SDK v5, please switch to the official
725737
[android_sdk_v4.38.2]: https://github.com/adjust/android_sdk/tree/v4.38.2
726738
[android_sdk_v4.38.3]: https://github.com/adjust/android_sdk/tree/v4.38.3
727739
[android_sdk_v5.0.0]: https://github.com/adjust/android_sdk/tree/v5.0.0
740+
[android_sdk_v5.0.1]: https://github.com/adjust/android_sdk/tree/v5.0.1

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.1
1+
5.0.2

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ android {
2727

2828
dependencies {
2929
implementation 'com.facebook.react:react-native:+'
30-
implementation 'com.adjust.sdk:adjust-android:5.0.0'
30+
implementation 'com.adjust.sdk:adjust-android:5.0.1'
3131
}

android/src/main/java/com/adjust/sdk/Adjust.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public void initSdk(final ReadableMap mapConfig) {
160160
} else if (logLevel.equals("ASSERT")) {
161161
adjustConfig.setLogLevel(LogLevel.ASSERT);
162162
} else if (logLevel.equals("SUPPRESS")) {
163-
adjustConfig.setLogLevel(LogLevel.SUPRESS);
163+
adjustConfig.setLogLevel(LogLevel.SUPPRESS);
164164
} else {
165165
adjustConfig.setLogLevel(LogLevel.INFO);
166166
}

ext/android/sdk

Submodule sdk updated 32 files

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Adjust.getAmazonAdId = function(callback) {
152152
};
153153

154154
Adjust.getSdkVersion = function(callback) {
155-
module_adjust.getSdkVersion("react-native5.0.1", callback);
155+
module_adjust.getSdkVersion("react-native5.0.2", callback);
156156
};
157157

158158
Adjust.requestAppTrackingAuthorization = function(callback) {
@@ -294,7 +294,7 @@ Adjust.onPause = function(testParam) {
294294
// AdjustConfig
295295

296296
var AdjustConfig = function(appToken, environment) {
297-
this.sdkPrefix = "react-native5.0.1";
297+
this.sdkPrefix = "react-native5.0.2";
298298
this.appToken = appToken;
299299
this.environment = environment;
300300
this.logLevel = null;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-adjust",
33
"description": "Adjust React Native SDK",
4-
"version": "5.0.1",
4+
"version": "5.0.2",
55
"main": "index.js",
66
"author": "Adjust",
77
"license": "MIT",

plugins/oaid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-adjust-oaid",
33
"description": "Adjust React Native OAID plugin",
4-
"version": "5.0.1",
4+
"version": "5.0.2",
55
"main": "index.js",
66
"author": "Adjust",
77
"license": "MIT",

react-native-adjust.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Pod::Spec.new do |s|
1818
s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'index.js'
1919
s.source_files = 'ios/*.{h,m}'
2020

21-
s.dependency 'Adjust', '5.0.0'
21+
s.dependency 'Adjust', '5.0.1'
2222
s.dependency 'React-Core'
2323
end

0 commit comments

Comments
 (0)