From 04ffd2f64591e2806313e86087e7be2d382d1ff4 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sun, 12 Jul 2026 11:31:02 +0200 Subject: [PATCH] test(android): model cold locale process startup --- .../src/test/java/ai/openclaw/app/NodeForegroundServiceTest.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/android/app/src/test/java/ai/openclaw/app/NodeForegroundServiceTest.kt b/apps/android/app/src/test/java/ai/openclaw/app/NodeForegroundServiceTest.kt index b3fe1dc66a0e..3b58cf70ea6c 100644 --- a/apps/android/app/src/test/java/ai/openclaw/app/NodeForegroundServiceTest.kt +++ b/apps/android/app/src/test/java/ai/openclaw/app/NodeForegroundServiceTest.kt @@ -1,5 +1,6 @@ package ai.openclaw.app +import ai.openclaw.app.i18n.NativeStringResources import android.app.Notification import android.app.NotificationManager import android.app.Service @@ -182,6 +183,7 @@ class NodeForegroundServiceTest { app.openFileOutput(localesFile, Context.MODE_PRIVATE).bufferedWriter().use { writer -> writer.write("""""") } + NativeStringResources.install(app) val controller = Robolectric.buildService(NodeForegroundService::class.java) try {