I am using Anbox Cloud to run Android Aplication and I have encountered an issue with the stock configuration. My use case requires the app to launch with the full Android UI, including:
Home screen/launcher
Status bar at the top of the screen
Navigation bar at the bottom
My Query
Is there an official way to launch apps with the full Android UI (status bar, navigation bar, launcher)?
What config files or commands should I use to consistently save these settings?
Where in the system are the main settings that determine this mode of operation stored?
I apologize for the inconvenience. After a closer look at the documentation, I found the solution I needed to enable the status bar, navigation bar, and launcher in Android.
According to the documentation, to enable the system UI in an application, you just need to add this flag when creating a new instance from the application
"features": "enable_system_ui"
I hope this information will be useful to other users who encounter a similar problem.
Thanks for the great documentation and product support!
Best regards, Roman S. THX a LOT
In the future, it is worth studying the documentation more carefully before creating your own solutions. =)
Hey g0rss
Thanks for reaching out.
In your case, I suppose you created an application with an app.apk file in the application folder. If that’s the case, then yes—when creating an application with an APK file, the system UI is disabled by default unless you explicitly set the feature enable_system_ui flag either when launching an instance from the application or by specifying the features in the application manifest file.
name: app
...
...
features:
- enable_system_ui
In this way, the system UI will be enabled by default, even when launching an instance from an application that was created with an APK file.