File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
src/main/java/org/schabi/newpipe
fastlane/metadata/android/en-US/changelogs Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ android {
17
17
resValue " string" , " app_name" , " NewPipe"
18
18
minSdkVersion 19
19
19
targetSdkVersion 29
20
- versionCode 977
21
- versionName " 0.21.11 "
20
+ versionCode 978
21
+ versionName " 0.21.12 "
22
22
23
23
multiDexEnabled true
24
24
Original file line number Diff line number Diff line change 43
43
import io .reactivex .rxjava3 .functions .Consumer ;
44
44
import io .reactivex .rxjava3 .plugins .RxJavaPlugins ;
45
45
46
- import static org .schabi .newpipe .CheckForNewAppVersion .startNewVersionCheckService ;
47
-
48
46
/*
49
47
* Copyright (C) Hans-Christoph Steiner 2016 <[email protected] >
50
48
* App.java is part of NewPipe.
@@ -113,9 +111,6 @@ public void onCreate() {
113
111
&& prefs .getBoolean (getString (R .string .show_image_indicators_key ), false ));
114
112
115
113
configureRxJavaErrorHandler ();
116
-
117
- // Check for new version
118
- startNewVersionCheckService ();
119
114
}
120
115
121
116
@ Override
Original file line number Diff line number Diff line change 20
20
21
21
package org .schabi .newpipe ;
22
22
23
+ import static org .schabi .newpipe .CheckForNewAppVersion .startNewVersionCheckService ;
24
+
23
25
import android .content .BroadcastReceiver ;
24
26
import android .content .Context ;
25
27
import android .content .Intent ;
@@ -163,6 +165,9 @@ protected void onCreate(final Bundle savedInstanceState) {
163
165
FocusOverlayView .setupFocusObserver (this );
164
166
}
165
167
openMiniPlayerUponPlayerStarted ();
168
+
169
+ // Check for new version
170
+ startNewVersionCheckService ();
166
171
}
167
172
168
173
private void setupDrawer () throws Exception {
Original file line number Diff line number Diff line change
1
+ Fixed executing the check for a new NewPipe version. This check was executed too early sometimes and therefore lead to an app crash. That should be fixed now.
You can’t perform that action at this time.
0 commit comments