From 8e87b5d465c0a36ac65fd1a49fd5fcc4b75d8020 Mon Sep 17 00:00:00 2001 From: Nik Clayton Date: Sat, 10 Jun 2023 22:31:59 +0200 Subject: [PATCH] Downgrade Truth library to 1.1.3 (#3733) It bundles Guava 32.0.0 which has a bug on Windows where temporary directories can't be created, causing tests to fail. See https://github.com/google/truth/issues/1137 and https://github.com/google/guava/issues/6535 --- gradle/libs.versions.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 6bf83872..19b2f6c1 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -49,7 +49,8 @@ rxjava3 = "3.1.6" rxkotlin3 = "3.0.1" photoview = "2.3.0" sparkbutton = "4.1.0" -truth = "1.1.4" +# Deliberate downgrade from 1.1.4, see https://github.com/google/truth/issues/1137 +truth = "1.1.3" turbine = "0.13.0" unified-push = "2.1.1" xmlwriter = "1.0.4"