Migrate system bar settings

This commit is contained in:
MM20
2022-01-29 17:47:45 +01:00
parent 97e714acf4
commit f5b21e4fe6
6 changed files with 81 additions and 1 deletions
@@ -114,5 +114,10 @@ fun createFactorySettings(context: Context): Settings {
.setIconPack("")
)
.setEasterEgg(false)
.setSystemBars(
Settings.SystemBarsSettings.newBuilder()
.setLightNavBar(false)
.setLightStatusBar(false)
)
.build()
}
@@ -159,4 +159,10 @@ message Settings {
bool easter_egg = 22;
message SystemBarsSettings {
bool lightStatusBar = 1;
bool lightNavBar = 2;
}
SystemBarsSettings system_bars = 23;
}