From e3960e78dab061542eb594286fecfc3a61fd0041 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Mon, 14 Apr 2025 16:59:19 +0200 Subject: [PATCH] Upate datastore to 1.1.4 (#4551) * datastore 1.1.4 * Allow license "BSD-3-Clause" Fixes: ERROR: SPDX identifier 'BSD-3-Clause' is NOT allowed * I cannot repro the issue --- app/build.gradle.kts | 1 + gradle/libs.versions.toml | 7 +------ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 107f9431f2..8e6d68bada 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -300,6 +300,7 @@ licensee { allow("Apache-2.0") allow("MIT") allow("BSD-2-Clause") + allow("BSD-3-Clause") allowUrl("https://opensource.org/licenses/MIT") allowUrl("https://developer.android.com/studio/terms.html") allowUrl("https://www.zetetic.net/sqlcipher/license/") diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1cb7599f23..739cb254a1 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -11,12 +11,7 @@ firebaseAppDistribution = "5.1.1" # AndroidX core = "1.16.0" -# Warning: there is an issue with 1.1.0 and 1.1.1, that I cannot repro on unit test. -# To repro with the application: -# Clear the storage of the application and run the app. Nearly each time, there is an infinite loading -# due to the DefaultMigrationStore not behaving as expected. -# Stick to 1.0.0 for now, and ensure that this scenario cannot be reproduced when upgrading the version. -datastore = "1.0.0" +datastore = "1.1.4" constraintlayout = "2.2.1" constraintlayout_compose = "1.1.1" lifecycle = "2.8.7"