react-native-update 10.28.8 → 10.28.10
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/build.gradle
CHANGED
|
@@ -78,7 +78,7 @@ if (expoProject) {
|
|
|
78
78
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
79
79
|
apply from: expoModulesCorePlugin
|
|
80
80
|
applyKotlinExpoModulesCorePlugin()
|
|
81
|
-
useExpoPublishing()
|
|
81
|
+
// useExpoPublishing()
|
|
82
82
|
useCoreDependencies()
|
|
83
83
|
} else {
|
|
84
84
|
group = 'cn.reactnative.modules.update'
|
|
@@ -148,7 +148,6 @@ repositories {
|
|
|
148
148
|
dependencies {
|
|
149
149
|
implementation 'com.facebook.react:react-native:+'
|
|
150
150
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0'
|
|
151
|
-
implementation 'com.jakewharton:process-phoenix:3.0.0'
|
|
152
151
|
}
|
|
153
152
|
if (isNewArchitectureEnabled()) {
|
|
154
153
|
react {
|
|
@@ -20,7 +20,6 @@ import com.facebook.react.bridge.UiThreadUtil;
|
|
|
20
20
|
import com.facebook.react.bridge.JSBundleLoader;
|
|
21
21
|
import com.facebook.react.bridge.WritableMap;
|
|
22
22
|
import com.facebook.react.modules.core.DeviceEventManagerModule;
|
|
23
|
-
import com.jakewharton.processphoenix.ProcessPhoenix;
|
|
24
23
|
|
|
25
24
|
import java.io.File;
|
|
26
25
|
import java.lang.reflect.Field;
|
|
@@ -3,7 +3,7 @@ import fileIo from '@ohos.file.fs';
|
|
|
3
3
|
import common from '@ohos.app.ability.common';
|
|
4
4
|
import { UpdateContext } from './UpdateContext';
|
|
5
5
|
|
|
6
|
-
export class
|
|
6
|
+
export class PushyFileJSBundleProvider extends JSBundleProvider {
|
|
7
7
|
private updateContext: UpdateContext;
|
|
8
8
|
private filePath: string = ''
|
|
9
9
|
|