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.
1 parent 9f1e2c6 commit 042f946Copy full SHA for 042f946
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