diff --git a/CHANGELOG.md b/CHANGELOG.md index 63847a0..543eb02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### Version 4.35.2 (9th October 2023) +#### Added +- Added sending of `event_callback_id` parameter (if set) with the event payload. + +#### Native SDKs +- [iOS@v4.35.2][ios_sdk_v4.35.2] +- [Android@v4.35.1][android_sdk_v4.35.1] +--- + ### Version 4.35.1 (2nd October 2023) #### Fixed - Fixed issue with signing iOS requests post ATT delay timer expiry. @@ -360,6 +369,7 @@ [ios_sdk_v4.34.2]: https://github.com/adjust/ios_sdk/tree/v4.34.2 [ios_sdk_v4.35.0]: https://github.com/adjust/ios_sdk/tree/v4.35.0 [ios_sdk_v4.35.1]: https://github.com/adjust/ios_sdk/tree/v4.35.1 +[ios_sdk_v4.35.2]: https://github.com/adjust/ios_sdk/tree/v4.35.2 [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 @@ -377,4 +387,5 @@ [android_sdk_v4.33.2]: https://github.com/adjust/android_sdk/tree/v4.33.2 [android_sdk_v4.33.3]: https://github.com/adjust/android_sdk/tree/v4.33.3 [android_sdk_v4.34.0]: https://github.com/adjust/android_sdk/tree/v4.34.0 -[android_sdk_v4.35.0]: https://github.com/adjust/android_sdk/tree/v4.35.0 \ No newline at end of file +[android_sdk_v4.35.0]: https://github.com/adjust/android_sdk/tree/v4.35.0 +[android_sdk_v4.35.1]: https://github.com/adjust/android_sdk/tree/v4.35.1 \ No newline at end of file diff --git a/README.md b/README.md index 9efa47a..5e27fe1 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ You can add Adjust SDK to your Flutter app by adding following to your `pubspec. ```yaml dependencies: - adjust_sdk: ^4.35.1 + adjust_sdk: ^4.35.2 ``` Then navigate to your project in the terminal and run: @@ -216,7 +216,7 @@ As of v4.22.0, the Adjust SDK supports install tracking on Huawei devices with H Make sure that following iOS frameworks are linked with your iOS app: -* `AdServices.framework` - in case you are running iAd campaigns +* `AdServices.framework` - in case you are running Apple Search Ads campaigns * `AdSupport.framework` - for reading iOS Advertising Id (IDFA) * `StoreKit.framework` - for communication with SKAdNetwork framework * `AppTrackingTransparency.framework` - to ask for user's consent to be tracked and obtain status of that consent diff --git a/VERSION b/VERSION index d5663ff..d40334f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.35.1 +4.35.2 diff --git a/android/build.gradle b/android/build.gradle index f6e9f37..fc5d49b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -37,5 +37,5 @@ android { } dependencies { - api 'com.adjust.sdk:adjust-android:4.35.0' + api 'com.adjust.sdk:adjust-android:4.35.1' } diff --git a/ios/adjust_sdk.podspec b/ios/adjust_sdk.podspec index 5df5c5c..b764434 100644 --- a/ios/adjust_sdk.podspec +++ b/ios/adjust_sdk.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'adjust_sdk' - s.version = '4.35.1' + s.version = '4.35.2' s.summary = 'Adjust Flutter SDK for iOS platform' s.description = <<-DESC Adjust Flutter SDK for iOS platform. @@ -14,5 +14,5 @@ Pod::Spec.new do |s| s.ios.deployment_target = '8.0' s.dependency 'Flutter' - s.dependency 'Adjust', '4.35.1' + s.dependency 'Adjust', '4.35.2' end diff --git a/lib/adjust.dart b/lib/adjust.dart index 5928aa7..f1aecf8 100644 --- a/lib/adjust.dart +++ b/lib/adjust.dart @@ -23,7 +23,7 @@ import 'package:flutter/services.dart'; import 'package:meta/meta.dart'; class Adjust { - static const String _sdkPrefix = 'flutter4.35.1'; + static const String _sdkPrefix = 'flutter4.35.2'; static const MethodChannel _channel = const MethodChannel('com.adjust.sdk/api'); diff --git a/pubspec.yaml b/pubspec.yaml index 343fbff..f10f54d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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: 4.35.1 +version: 4.35.2 environment: sdk: ">=2.12.0 <3.0.0" diff --git a/test/ios/test_lib.podspec b/test/ios/test_lib.podspec index 6540383..22727cf 100644 --- a/test/ios/test_lib.podspec +++ b/test/ios/test_lib.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'test_lib' - s.version = '4.35.1' + s.version = '4.35.2' s.summary = 'Adjust test library for iOS platform' s.description = <<-DESC Adjust test library for iOS platform. diff --git a/test/pubspec.yaml b/test/pubspec.yaml index ebc021d..34da9e7 100644 --- a/test/pubspec.yaml +++ b/test/pubspec.yaml @@ -1,6 +1,6 @@ name: test_lib description: Flutter plugin for Adjust Testing Library. Intended exclusively for internal use. -version: 4.35.1 +version: 4.35.2 author: Adjust (sdk@adjust.com) environment: