From 4cf6cef68d23b1a36af74c311d67d3d3656a303d Mon Sep 17 00:00:00 2001 From: Satoshi Qazi Muhammed Date: Thu, 9 Jul 2026 08:16:32 -0700 Subject: [PATCH] fix: add missing scalars converter dependency for androidTest TronBalancesIntegrationTest.kt uses ScalarsConverterFactory but nothing in app/build.gradle declared it, so the app module's androidTest compilation failed with "Unresolved reference 'scalars'" - this was never caught before now because the emulator balances_test.yml workflow only runs on a schedule/ manual dispatch, not on every push. --- app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/app/build.gradle b/app/build.gradle index f0eaa8b3..fe5f4538 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -324,6 +324,7 @@ dependencies { androidTestImplementation androidTestRunnerDep androidTestImplementation androidTestRulesDep androidTestImplementation androidJunitDep + androidTestImplementation scalarsConverterDep androidTestImplementation allureKotlinModel androidTestImplementation allureKotlinCommons