You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/src/main/java/io/github/muntashirakon/AppManager/main/MainActivity.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -543,6 +543,14 @@ protected void onPause() {
543
543
}
544
544
545
545
privatevoiddisplayChangelogIfRequired() {
546
+
if (BuildConfig.DEBUG) {
547
+
newScrollableDialogBuilder(this)
548
+
.setTitle("Debug Variants Discontinued")
549
+
.setMessage("The official debug builds have been discontinued. Consider migrating to the release builds as this build will stop working 2 months after the release date.")
550
+
.setNegativeButton(R.string.ok, null)
551
+
.show();
552
+
return;
553
+
}
546
554
if (!AppPref.getBoolean(AppPref.PrefKey.PREF_DISPLAY_CHANGELOG_BOOL)) {
0 commit comments