Is there a way to prevent returning to the home screen on watch?

It powers on and runs only its own app, and no matter what operations are performed, it cannot return to the menu. Currently, swiping to the right always returns to the home menu screen.

  1. Swiping right to go back returns to a default “main” app, which can be set to your own application via the interface ‘app_get_reg_main_app’.

  2. To run only your own app upon startup, use ‘app_set_reg_power_on_app’ to set the power-on application.

Reference document: 设置默认APP - SiFli Solution Documents 文档

The first point doesn’t work: even after setting a default app, swiping right still takes you to the home screen; only the button navigation correctly opens the default app.

Try setting it first using ‘app_schedule_change_main_app_id’ before calling ‘app_set_reg_main_app’. If it still doesn’t work, please share the log.

Using app_schedule_change_main_app_id is sufficient, thank you.