From efa739f06969ec5d4ef895c0154f6ee333825d18 Mon Sep 17 00:00:00 2001 From: Michael Angelo Reyes Date: Mon, 25 Nov 2024 15:20:15 +0800 Subject: [PATCH] [22764] - [TripGov5] update waupaca AndroidManifest.xml to add storage permissions - [TripGov5] update WaupacaApplication to initialize DistanceFormatter and inject UnitsRepository - [TripGov5] update AccountEditActivityViewModel.kt and add livedata to handle tripGoClientId and bind to activity_account_edit.xml - [TripGov5] update HomeViewModel to update how userData flow is collected when checking user bundle - [TripKitUI] update CustomBinding.kt to add tripGoClientId on the custom binder for profile image loading that requires additional auth headers to call - update DistanceFormatter to check and use units from UnitsRepository - update trip_result_list_item.xml to set again visibility for money cost - update TripResultViewModel to update visibility setting for money cost to only show if config hideTripMetrics is true --- dependencies.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dependencies.gradle b/dependencies.gradle index 26106359..e6903a00 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -39,6 +39,7 @@ versions.qrCodeGenerator = "1.2.0" versions.amplifyCore = "2.14.11" versions.amplifyAuth = "1.2.0" versions.desugar = "2.0.4" +versions.preference = "1.2.0" ext.versions = versions @@ -58,6 +59,7 @@ libs.javaxAnnotation = "javax.annotation:javax.annotation-api:$versions.javaxAnn libs.instabug = "com.instabug.library:instabug:$versions.instabug" libs.instabugInterceptor = "com.instabug.library:instabug-with-okhttp-interceptor:$versions.instabug" libs.mockk = "io.mockk:mockk:$versions.mockk" +libs.preference = "androidx.preference:preference:$versions.preference" // Support Library package libs.supportAnnotations = "androidx.annotation:annotation:$versions.androidxVersion"