From: Tobias Brunner Date: Thu, 25 Sep 2025 15:31:03 +0000 (+0200) Subject: android: Explicitly pull in androidx.localbroadcastmanager X-Git-Tag: android-2.6.0^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eac76a1a5a09d37562e6e5dc7c606ef9174cb25f;p=thirdparty%2Fstrongswan.git 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. --- 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'