Skip to content

Commit 34f2089

Browse files
committed
Default to minimal blocking mode for all new users
Minimal mode has the least app breakage and is the safest default for all builds, not just TC Slim. Users can upgrade to standard or strict during onboarding or later in settings. https://claude.ai/code/session_01WxVqHGC5HpTYXmqfoUpWzy
1 parent bcdba21 commit 34f2089

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

app/src/main/java/net/kollnig/missioncontrol/data/BlockingMode.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,11 @@ public static boolean isStrictMode(Context c) {
7878
}
7979

8080
/**
81-
* Get the default blocking mode based on build flavor.
82-
* TC Slim (play flavor) defaults to minimal mode.
81+
* Get the default blocking mode for new users.
82+
* Minimal is the safest default — least app breakage.
8383
*/
8484
public static String getDefaultMode() {
85-
if (Util.isPlayStoreInstall()) {
86-
return MODE_MINIMAL;
87-
}
88-
return MODE_STANDARD;
85+
return MODE_MINIMAL;
8986
}
9087

9188
/**

0 commit comments

Comments
 (0)