Skip to content

Commit 71c4742

Browse files
authored
Merge pull request #143 from adjust/v502
Version 5.0.2
2 parents 3d771a4 + b31ae48 commit 71c4742

File tree

9 files changed

+22
-9
lines changed

9 files changed

+22
-9
lines changed

CHANGELOG.md

+13
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 (4th September 2024)
213
#### Fixed
314
- Added missing `Adjust.getLastDeeplink` implementation on iOS platform.
@@ -478,6 +489,7 @@ In case you were using beta version of the SDK v5, please switch to the official
478489
[ios_sdk_v4.38.2]: https://github.com/adjust/ios_sdk/tree/v4.38.2
479490
[ios_sdk_v4.38.4]: https://github.com/adjust/ios_sdk/tree/v4.38.4
480491
[ios_sdk_v5.0.0]: https://github.com/adjust/ios_sdk/tree/v5.0.0
492+
[ios_sdk_v5.0.1]: https://github.com/adjust/ios_sdk/tree/v5.0.1
481493

482494
[android_sdk_v4.17.0]: https://github.com/adjust/android_sdk/tree/v4.17.0
483495
[android_sdk_v4.18.0]: https://github.com/adjust/android_sdk/tree/v4.18.0
@@ -503,3 +515,4 @@ In case you were using beta version of the SDK v5, please switch to the official
503515
[android_sdk_v4.38.3]: https://github.com/adjust/android_sdk/tree/v4.38.3
504516
[android_sdk_v4.38.5]: https://github.com/adjust/android_sdk/tree/v4.38.5
505517
[android_sdk_v5.0.0]: https://github.com/adjust/android_sdk/tree/v5.0.0
518+
[android_sdk_v5.0.1]: https://github.com/adjust/android_sdk/tree/v5.0.1

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.1
1+
5.0.2

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ android {
3737
}
3838

3939
dependencies {
40-
implementation 'com.adjust.sdk:adjust-android:5.0.0'
40+
implementation 'com.adjust.sdk:adjust-android:5.0.1'
4141
}

android/src/main/java/com/adjust/sdk/flutter/AdjustSdk.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ private void initSdk(final MethodCall call, final Result result) {
273273
adjustConfig.setLogLevel(LogLevel.ASSERT);
274274
break;
275275
case "suppress":
276-
adjustConfig.setLogLevel(LogLevel.SUPRESS);
276+
adjustConfig.setLogLevel(LogLevel.SUPPRESS);
277277
break;
278278
case "info":
279279
default:

ios/adjust_sdk.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'adjust_sdk'
3-
s.version = '5.0.1'
3+
s.version = '5.0.2'
44
s.summary = 'Adjust Flutter SDK for iOS platform'
55
s.description = <<-DESC
66
Adjust Flutter SDK for iOS platform.
@@ -14,5 +14,5 @@ Pod::Spec.new do |s|
1414
s.ios.deployment_target = '12.0'
1515

1616
s.dependency 'Flutter'
17-
s.dependency 'Adjust', '5.0.0'
17+
s.dependency 'Adjust', '5.0.1'
1818
end

lib/adjust.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import 'package:flutter/services.dart';
2424
import 'package:meta/meta.dart';
2525

2626
class Adjust {
27-
static const String _sdkPrefix = 'flutter5.0.1';
27+
static const String _sdkPrefix = 'flutter5.0.2';
2828
static const MethodChannel _channel =
2929
const MethodChannel('com.adjust.sdk/api');
3030

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: adjust_sdk
22
description: This is the Flutter SDK of Adjust™. You can read more about Adjust™ at adjust.com.
33
homepage: https://github.com/adjust/flutter_sdk
4-
version: 5.0.1
4+
version: 5.0.2
55

66
environment:
77
sdk: ">=2.12.0 <3.0.0"

test/ios/test_lib.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'test_lib'
3-
s.version = '5.0.1'
3+
s.version = '5.0.2'
44
s.summary = 'Adjust test library for iOS platform'
55
s.description = <<-DESC
66
Adjust test library for iOS platform.

test/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: test_lib
22
description: Flutter plugin for Adjust Testing Library. Intended exclusively for internal use.
3-
version: 5.0.1
3+
version: 5.0.2
44
author: Adjust ([email protected])
55

66
environment:

0 commit comments

Comments
 (0)