Skip to content

Commit 0f918de

Browse files
authored
Merge pull request #173 from adjust/v542
Version 5.4.2
2 parents bf0a548 + cd20367 commit 0f918de

33 files changed

+918
-11
lines changed

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "ext/android/sdk"]
2+
path = ext/android/sdk
3+
url = https://github.com/adjust/android_sdk.git
4+
[submodule "ext/ios/sdk"]
5+
path = ext/ios/sdk
6+
url = https://github.com/adjust/ios_sdk.git

.pubignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Exclude test directory from published package
22
test/
33

4+
# Exclude external SDK submodules and scripts directory
5+
ext/
6+
scripts/
7+
48
# Exclude build artifacts and development files
59
**/build/
610
**/.dart_tool/

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
### Version 5.4.2 (12th August 2025)
2+
#### Fixed
3+
- Fixed first session delay pre-init actions array lazy initialization.
4+
5+
#### Changed
6+
- Updated purchase verification handler (internal changes).
7+
8+
#### Native SDKs
9+
- **iOS:** [v5.4.3](https://github.com/adjust/ios_sdk/tree/v5.4.3)
10+
- **Android:** [v5.4.2](https://github.com/adjust/android_sdk/tree/v5.4.2)
11+
12+
---
13+
114
### Version 5.4.1 (1st July 2025)
215

316
#### Added

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.4.1
1+
5.4.2

android/build.gradle

Lines changed: 1 addition & 1 deletion
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.4.1'
40+
implementation 'com.adjust.sdk:adjust-android:5.4.2'
4141
}

ext/android/sdk

Submodule sdk added at 2abc832

ext/ios/sdk

Submodule sdk added at c142415

ios/adjust_sdk.podspec

Lines changed: 2 additions & 2 deletions
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.4.1'
3+
s.version = '5.4.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.4.1'
17+
s.dependency 'Adjust', '5.4.3'
1818
end

lib/adjust.dart

Lines changed: 1 addition & 1 deletion
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.4.1';
27+
static const String _sdkPrefix = 'flutter5.4.2';
2828
static const MethodChannel _channel =
2929
const MethodChannel('com.adjust.sdk/api');
3030

lib/adjust_purchase_verification_result.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ class AdjustPurchaseVerificationResult {
2222
}
2323
} catch (ex) {}
2424

25-
return AdjustPurchaseVerificationResult(parsedCode, map['message'], map['verificationStatus']);
25+
return AdjustPurchaseVerificationResult(
26+
parsedCode,
27+
map['message'] ?? '',
28+
map['verificationStatus'] ?? '');
2629
} catch (e) {
2730
throw Exception(
2831
'[AdjustFlutter]: Failed to create AdjustPurchaseVerificationResult object from given map object. Details: ' +

0 commit comments

Comments
 (0)