Skip to content

Commit

Permalink
software update checker by default is false
Browse files Browse the repository at this point in the history
  • Loading branch information
limboemu committed Mar 9, 2022
1 parent 69236c1 commit 887c6a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public enum Arch {
public static boolean processMouseHistoricalEvents = false;

//Change to true in prod if you want to be notified by default for new versions
public static boolean defaultCheckNewVersion = true;
public static boolean defaultCheckNewVersion = false;

//enable tracing
// make sure you have access to the dir/files below
Expand Down
2 changes: 1 addition & 1 deletion limbo-android-lib/src/main/res/xml/software_updates.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="Updates">
<CheckBoxPreference
android:defaultValue="true"
android:defaultValue="false"
android:key="updateVersionPrompt"
android:summary="@string/CheckSoftwareUpdatesSummary"
android:title="@string/CheckSoftwareUpdates" />
Expand Down

0 comments on commit 887c6a6

Please sign in to comment.