diff options
author | Lars Schmertmann <[email protected]> | 2024-11-01 07:25:55 +0100 |
---|---|---|
committer | Lars Schmertmann <[email protected]> | 2025-06-03 19:55:47 +0200 |
commit | 36b5854af53650132738cd950a220b45669ae5bc (patch) | |
tree | de85d189e3655c30757c0680bcbd054aee1dfb0d | |
parent | c485c07c6d7e29eae5e633adb9429e293f63b63b (diff) |
The Android target API level was bumped to 35 in
997a1fae98d35cd0d4d16f37ab68afe2729ff551 so we can
bumb the version of the androidx dependency too.
Pick-to: 6.10 6.9 6.8
Change-Id: I30d561cc0b74645c939e7d3dd595926b6013caf9
Reviewed-by: Assam Boudjelthia <[email protected]>
-rw-r--r-- | src/android/templates/build.gradle | 2 | ||||
-rw-r--r-- | tests/auto/corelib/platform/android_legacy_packaging/testdata/build.gradle | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/android/templates/build.gradle b/src/android/templates/build.gradle index 929f4119ff5..6f39acc58fa 100644 --- a/src/android/templates/build.gradle +++ b/src/android/templates/build.gradle @@ -20,7 +20,7 @@ apply plugin: qtGradlePluginType dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar']) //noinspection GradleDependency - implementation 'androidx.core:core:1.13.1' + implementation 'androidx.core:core:1.16.0' } android { diff --git a/tests/auto/corelib/platform/android_legacy_packaging/testdata/build.gradle b/tests/auto/corelib/platform/android_legacy_packaging/testdata/build.gradle index 0df74ec2635..806614e113f 100644 --- a/tests/auto/corelib/platform/android_legacy_packaging/testdata/build.gradle +++ b/tests/auto/corelib/platform/android_legacy_packaging/testdata/build.gradle @@ -18,7 +18,7 @@ apply plugin: qtGradlePluginType dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar']) - implementation 'androidx.core:core:1.13.1' + implementation 'androidx.core:core:1.16.0' } android { |