From eac76a1a5a09d37562e6e5dc7c606ef9174cb25f Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 25 Sep 2025 17:31:03 +0200 Subject: [PATCH] android: Explicitly pull in androidx.localbroadcastmanager Seems to not get pulled in automatically anymore. This has actually been deprecated for years apparently. Unfortunately, it's not that easy to replace, so keep it for now. --- src/frontends/android/app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontends/android/app/build.gradle b/src/frontends/android/app/build.gradle index 330016150b..729b7dd823 100644 --- a/src/frontends/android/app/build.gradle +++ b/src/frontends/android/app/build.gradle @@ -49,6 +49,7 @@ dependencies { implementation 'androidx.core:core:1.17.0' implementation 'androidx.lifecycle:lifecycle-process:2.9.4' implementation 'androidx.preference:preference:1.2.1' + implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0' implementation 'com.google.android.material:material:1.13.0' testImplementation 'junit:junit:4.13.2' testImplementation 'org.assertj:assertj-core:3.27.6' -- 2.47.3