Skip to content

Commit 45df17b

Browse files
authored
Merge pull request #179 from adjust/v544
Version 5.4.4
2 parents 11f9322 + 365a4ba commit 45df17b

File tree

15 files changed

+31
-17
lines changed

15 files changed

+31
-17
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### Version 5.4.4 (25th September 2025)
2+
#### Changed
3+
- Updated Gradle version of the plugin, example and test Android apps to `8.13.0` and `compileSdk` and `targetSdk` to `36` (https://github.com/adjust/flutter_sdk/issues/178).
4+
5+
#### Native SDKs
6+
- **iOS:** [v5.4.4](https://github.com/adjust/ios_sdk/tree/v5.4.4)
7+
- **Android:** [v5.4.4](https://github.com/adjust/android_sdk/tree/v5.4.4)
8+
9+
---
10+
111
### Version 5.4.3 (23rd September 2025)
212
#### Added
313
- Added support for processing deferred deep links in session responses.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.4.3
1+
5.4.4

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
}
88

99
dependencies {
10-
classpath('com.android.tools.build:gradle:8.2.1')
10+
classpath('com.android.tools.build:gradle:8.13.0')
1111
}
1212
}
1313
rootProject.allprojects {
@@ -24,7 +24,7 @@ rootProject.allprojects {
2424
}
2525
apply plugin: 'com.android.library'
2626
android {
27-
compileSdkVersion 33
27+
compileSdkVersion 36
2828

2929
defaultConfig {
3030
minSdkVersion 16
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon Jan 06 12:48:45 CET 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

example/android/app/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ plugins {
77

88
android {
99
namespace = "com.adjust.examples"
10-
compileSdk = flutter.compileSdkVersion
10+
// compileSdk = flutter.compileSdkVersion
11+
compileSdk = 36
1112
ndkVersion = flutter.ndkVersion
1213

1314
compileOptions {
@@ -22,7 +23,8 @@ android {
2223
defaultConfig {
2324
applicationId = "com.adjust.examples"
2425
minSdk = flutter.minSdkVersion
25-
targetSdk = flutter.targetSdkVersion
26+
// targetSdk = flutter.targetSdkVersion
27+
targetSdk = 36
2628
versionCode = flutter.versionCode
2729
versionName = flutter.versionName
2830
}

example/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip

example/android/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pluginManagement {
1919

2020
plugins {
2121
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
22-
id("com.android.application") version "8.9.1" apply false
22+
id("com.android.application") version "8.13.0" apply false
2323
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
2424
}
2525

ios/adjust_sdk.podspec

Lines changed: 1 addition & 1 deletion
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.3'
3+
s.version = '5.4.4'
44
s.summary = 'Adjust Flutter SDK for iOS platform'
55
s.description = <<-DESC
66
Adjust Flutter SDK for iOS platform.

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.3';
27+
static const String _sdkPrefix = 'flutter5.4.4';
2828
static const MethodChannel _channel =
2929
const MethodChannel('com.adjust.sdk/api');
3030

pubspec.yaml

Lines changed: 1 addition & 1 deletion
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.4.3
4+
version: 5.4.4
55

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

0 commit comments

Comments
 (0)