[android] Enable Show on lock screen setting by default

Needed-for: #1928

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin 2022-02-10 19:53:26 +03:00 committed by Viktor Govako
parent 156eea362e
commit c095c3f278
2 changed files with 2 additions and 2 deletions

View file

@ -81,7 +81,7 @@
android:key="@string/pref_show_on_lock_screen"
android:title="@string/enable_show_on_lock_screen"
android:summary="@string/enable_show_on_lock_screen_description"
android:defaultValue="false"
android:defaultValue="true"
android:order="17"/>
</androidx.preference.PreferenceCategory>

View file

@ -189,7 +189,7 @@ public final class Config
public static boolean isShowOnLockScreenEnabled()
{
return getBool(KEY_MISC_SHOW_ON_LOCK_SCREEN, false);
return getBool(KEY_MISC_SHOW_ON_LOCK_SCREEN, true);
}
public static void setShowOnLockScreenEnabled(boolean enabled)