@appzung/react-native-code-push 10.2.3 → 10.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/app/src/main/java/com/appzung/codepush/react/CodePushNativeModule.java +2 -2
- package/lib/commonjs/internals/version.js +1 -1
- package/lib/module/internals/version.js +1 -1
- package/lib/typescript/commonjs/src/internals/version.d.ts +1 -1
- package/lib/typescript/module/src/internals/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/internals/version.ts +1 -1
|
@@ -5,6 +5,7 @@ import android.content.SharedPreferences;
|
|
|
5
5
|
import android.os.AsyncTask;
|
|
6
6
|
import android.os.Handler;
|
|
7
7
|
import android.os.Looper;
|
|
8
|
+
import android.view.Choreographer;
|
|
8
9
|
import android.view.View;
|
|
9
10
|
|
|
10
11
|
import com.facebook.react.ReactApplication;
|
|
@@ -20,7 +21,6 @@ import com.facebook.react.bridge.ReactMethod;
|
|
|
20
21
|
import com.facebook.react.bridge.ReadableMap;
|
|
21
22
|
import com.facebook.react.bridge.WritableMap;
|
|
22
23
|
import com.facebook.react.devsupport.interfaces.DevSupportManager;
|
|
23
|
-
import com.facebook.react.modules.core.ChoreographerCompat;
|
|
24
24
|
import com.facebook.react.modules.core.DeviceEventManagerModule;
|
|
25
25
|
import com.facebook.react.modules.core.ReactChoreographer;
|
|
26
26
|
import com.facebook.react.modules.debug.interfaces.DeveloperSettings;
|
|
@@ -373,7 +373,7 @@ public class CodePushNativeModule extends ReactContextBaseJavaModule {
|
|
|
373
373
|
getReactApplicationContext().runOnUiQueueThread(new Runnable() {
|
|
374
374
|
@Override
|
|
375
375
|
public void run() {
|
|
376
|
-
ReactChoreographer.getInstance().postFrameCallback(ReactChoreographer.CallbackType.TIMERS_EVENTS, new
|
|
376
|
+
ReactChoreographer.getInstance().postFrameCallback(ReactChoreographer.CallbackType.TIMERS_EVENTS, new Choreographer.FrameCallback() {
|
|
377
377
|
@Override
|
|
378
378
|
public void doFrame(long frameTimeNanos) {
|
|
379
379
|
if (!latestDownloadProgress.isCompleted()) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "10.2.
|
|
1
|
+
export declare const version = "10.2.4";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "10.2.
|
|
1
|
+
export declare const version = "10.2.4";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/internals/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '10.2.
|
|
2
|
+
export const version = '10.2.4';
|