Skip to content

Change General Settings

Lumiq Creative edited this page Jul 8, 2020 · 1 revision

app/src/main/res/values/dashboard_setup.xml contains general settings.

Top App Bar Image

You can replace the Top App Bar title with an image. Create a drawable in app/src/main/drawable and enter its name (no file extension) inside toolbar_logo.

<string name="toolbar_logo"></string>

Interface Animations

animations_enabled_by_default controls if UI animations are turned on by default.

  • true enables animations by default.
  • false requires opt-in via Settings.
<bool name="animations_enabled_by_default">true | false</bool>

Version Info in Settings

show_versions_in_settings shows or hides version info from Settings.

  • true shows dashboard and app versions in Settings.
  • false hides version information from Settings.
<bool name="show_versions_in_settings">true | false</bool>

Default Appearance

You can set a default appearance for new installations via default_theme.

  • 0 sets light appearance as default.
  • 1 sets dark appearance as default.
  • 2 mirrors system appearance.
<integer name="default_theme">1 | 2 | 3</integer>

Dark Mode Variant

amoled_theme_enabled_by_default defines whether to use pitch black by default.

  • true uses pitch black backgrounds.
  • false uses dark grey backgrounds.
<bool name="amoled_theme_enabled_by_default">true | false</bool>