Tweak `expo-modules-core` hack patch (#4955)

zio/stable
Hailey 2024-08-18 13:24:41 -07:00 committed by GitHub
parent 40ab67fc4b
commit 2939ee7df7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -4,12 +4,12 @@ index bb74e80..0aa0202 100644
+++ b/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/NativeModulesProxy.java +++ b/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/NativeModulesProxy.java
@@ -90,8 +90,8 @@ public class NativeModulesProxy extends ReactContextBaseJavaModule { @@ -90,8 +90,8 @@ public class NativeModulesProxy extends ReactContextBaseJavaModule {
mModuleRegistry.ensureIsInitialized(); mModuleRegistry.ensureIsInitialized();
KotlinInteropModuleRegistry kotlinModuleRegistry = getKotlinInteropModuleRegistry(); KotlinInteropModuleRegistry kotlinModuleRegistry = getKotlinInteropModuleRegistry();
- kotlinModuleRegistry.emitOnCreate(); - kotlinModuleRegistry.emitOnCreate();
kotlinModuleRegistry.installJSIInterop(); kotlinModuleRegistry.installJSIInterop();
+ kotlinModuleRegistry.emitOnCreate(); + kotlinModuleRegistry.emitOnCreate();
Map<String, Object> constants = new HashMap<>(3); Map<String, Object> constants = new HashMap<>(3);
constants.put(MODULES_CONSTANTS_KEY, new HashMap<>()); constants.put(MODULES_CONSTANTS_KEY, new HashMap<>());
diff --git a/node_modules/expo-modules-core/build/uuid/uuid.js b/node_modules/expo-modules-core/build/uuid/uuid.js diff --git a/node_modules/expo-modules-core/build/uuid/uuid.js b/node_modules/expo-modules-core/build/uuid/uuid.js
@ -30,10 +30,10 @@ index ee2268a..4851b67 100644
+++ b/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift +++ b/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift
@@ -173,7 +173,7 @@ public final class SharedObjectRegistry { @@ -173,7 +173,7 @@ public final class SharedObjectRegistry {
} }
internal func clear() { internal func clear() {
- Self.lockQueue.async { - Self.lockQueue.async {
+ DispatchQueue.main.sync { + Self.lockQueue.sync {
self.pairs.removeAll() self.pairs.removeAll()
} }
} }