Skip to content

Commit

Permalink
Merge pull request #143 from adjust/v502
Browse files Browse the repository at this point in the history
Version 5.0.2
  • Loading branch information
uerceg authored Sep 23, 2024
2 parents 3d771a4 + b31ae48 commit 71c4742
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 9 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### Version 5.0.2 (23rd September 2024)
#### Fixed
- Fixed `Adjust.modulemap not found` error in certain CocoaPods integration cases.
- Fixed occasional ANRs while reading install referrer from Shared Preferences during the SDK initialization.

#### Native SDKs
- [iOS@v5.0.1][ios_sdk_v5.0.1]
- [Android@v5.0.1][android_sdk_v5.0.1]

---

### Version 5.0.1 (4th September 2024)
#### Fixed
- Added missing `Adjust.getLastDeeplink` implementation on iOS platform.
Expand Down Expand Up @@ -478,6 +489,7 @@ In case you were using beta version of the SDK v5, please switch to the official
[ios_sdk_v4.38.2]: https://github.com/adjust/ios_sdk/tree/v4.38.2
[ios_sdk_v4.38.4]: https://github.com/adjust/ios_sdk/tree/v4.38.4
[ios_sdk_v5.0.0]: https://github.com/adjust/ios_sdk/tree/v5.0.0
[ios_sdk_v5.0.1]: https://github.com/adjust/ios_sdk/tree/v5.0.1

[android_sdk_v4.17.0]: https://github.com/adjust/android_sdk/tree/v4.17.0
[android_sdk_v4.18.0]: https://github.com/adjust/android_sdk/tree/v4.18.0
Expand All @@ -503,3 +515,4 @@ In case you were using beta version of the SDK v5, please switch to the official
[android_sdk_v4.38.3]: https://github.com/adjust/android_sdk/tree/v4.38.3
[android_sdk_v4.38.5]: https://github.com/adjust/android_sdk/tree/v4.38.5
[android_sdk_v5.0.0]: https://github.com/adjust/android_sdk/tree/v5.0.0
[android_sdk_v5.0.1]: https://github.com/adjust/android_sdk/tree/v5.0.1
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.1
5.0.2
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ android {
}

dependencies {
implementation 'com.adjust.sdk:adjust-android:5.0.0'
implementation 'com.adjust.sdk:adjust-android:5.0.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ private void initSdk(final MethodCall call, final Result result) {
adjustConfig.setLogLevel(LogLevel.ASSERT);
break;
case "suppress":
adjustConfig.setLogLevel(LogLevel.SUPRESS);
adjustConfig.setLogLevel(LogLevel.SUPPRESS);
break;
case "info":
default:
Expand Down
4 changes: 2 additions & 2 deletions ios/adjust_sdk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'adjust_sdk'
s.version = '5.0.1'
s.version = '5.0.2'
s.summary = 'Adjust Flutter SDK for iOS platform'
s.description = <<-DESC
Adjust Flutter SDK for iOS platform.
Expand All @@ -14,5 +14,5 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '12.0'

s.dependency 'Flutter'
s.dependency 'Adjust', '5.0.0'
s.dependency 'Adjust', '5.0.1'
end
2 changes: 1 addition & 1 deletion lib/adjust.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import 'package:flutter/services.dart';
import 'package:meta/meta.dart';

class Adjust {
static const String _sdkPrefix = 'flutter5.0.1';
static const String _sdkPrefix = 'flutter5.0.2';
static const MethodChannel _channel =
const MethodChannel('com.adjust.sdk/api');

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: adjust_sdk
description: This is the Flutter SDK of Adjust™. You can read more about Adjust™ at adjust.com.
homepage: https://github.com/adjust/flutter_sdk
version: 5.0.1
version: 5.0.2

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion test/ios/test_lib.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'test_lib'
s.version = '5.0.1'
s.version = '5.0.2'
s.summary = 'Adjust test library for iOS platform'
s.description = <<-DESC
Adjust test library for iOS platform.
Expand Down
2 changes: 1 addition & 1 deletion test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test_lib
description: Flutter plugin for Adjust Testing Library. Intended exclusively for internal use.
version: 5.0.1
version: 5.0.2
author: Adjust (sdk@adjust.com)

environment:
Expand Down

0 comments on commit 71c4742

Please sign in to comment.