From 78f7d525cc9d805731c2b99df4a57a754a5c9840 Mon Sep 17 00:00:00 2001 From: Jonathan Schwender <55576758+jschwe@users.noreply.github.com> Date: Wed, 5 Mar 2025 08:56:00 +0100 Subject: [PATCH] Rename ohos app bundle (#35790) The `shell` suffix causes issues with the startup profiling tools on OpenHarmony. The profiler fails to detect the start of the app. This is fixed by renaming the app. I tried various different variations and identified the `shell` suffix to be the culprit. E.g. `org.servo.shell` has the same issue, so its not a length issue. Signed-off-by: Jonathan Schwender --- support/openharmony/AppScope/app.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/openharmony/AppScope/app.json5 b/support/openharmony/AppScope/app.json5 index 84df84679d8..7dbcbce68fc 100644 --- a/support/openharmony/AppScope/app.json5 +++ b/support/openharmony/AppScope/app.json5 @@ -1,6 +1,6 @@ { "app": { - "bundleName": "org.servo.servoshell", + "bundleName": "org.servo.servo", "vendor": "example", "versionCode": 1000000, "versionName": "1.0.0",