We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f1e2c6 + 042f946 commit 56fb31dCopy full SHA for 56fb31d
1 file changed
app/src/main/java/org/schabi/newpipe/MainActivity.java
@@ -200,7 +200,11 @@ protected void onCreate(final Bundle savedInstanceState) {
200
UpdateSettingsFragment.askForConsentToUpdateChecks(this);
201
}
202
203
- showKeepAndroidDialog();
+ // ReleaseVersionUtil.INSTANCE.isReleaseApk() will be true only for main official build
204
+ // We want every release build (nightly, nightly-refactor) to show the popup
205
+ if (!DEBUG) {
206
+ showKeepAndroidDialog();
207
+ }
208
209
MigrationManager.showUserInfoIfPresent(this);
210
0 commit comments