Merge pull request #13292 from dustdfg/kao_release_only

This commit is contained in:
Stypox 2026-02-26 11:01:56 +01:00 committed by GitHub
commit 56fb31d0fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -200,7 +200,11 @@ public class MainActivity extends AppCompatActivity {
UpdateSettingsFragment.askForConsentToUpdateChecks(this);
}
showKeepAndroidDialog();
// ReleaseVersionUtil.INSTANCE.isReleaseApk() will be true only for main official build
// We want every release build (nightly, nightly-refactor) to show the popup
if (!DEBUG) {
showKeepAndroidDialog();
}
MigrationManager.showUserInfoIfPresent(this);
}