2024-06-06 20:21:38 +02:00
|
|
|
diff --git a/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
|
|
|
|
index bb74e80..0aa0202 100644
|
|
|
|
--- a/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 {
|
|
|
|
mModuleRegistry.ensureIsInitialized();
|
|
|
|
|
|
|
|
KotlinInteropModuleRegistry kotlinModuleRegistry = getKotlinInteropModuleRegistry();
|
|
|
|
- kotlinModuleRegistry.emitOnCreate();
|
|
|
|
kotlinModuleRegistry.installJSIInterop();
|
|
|
|
+ kotlinModuleRegistry.emitOnCreate();
|
|
|
|
|
|
|
|
Map<String, Object> constants = new HashMap<>(3);
|
|
|
|
constants.put(MODULES_CONSTANTS_KEY, new HashMap<>());
|
2024-07-30 17:25:31 +02:00
|
|
|
diff --git a/node_modules/expo-modules-core/build/uuid/uuid.js b/node_modules/expo-modules-core/build/uuid/uuid.js
|
|
|
|
index 109d3fe..c7fce9e 100644
|
|
|
|
--- a/node_modules/expo-modules-core/build/uuid/uuid.js
|
|
|
|
+++ b/node_modules/expo-modules-core/build/uuid/uuid.js
|
|
|
|
@@ -1,5 +1,7 @@
|
|
|
|
import bytesToUuid from './lib/bytesToUuid';
|
|
|
|
import { Uuidv5Namespace } from './uuid.types';
|
|
|
|
+import { ensureNativeModulesAreInstalled } from '../ensureNativeModulesAreInstalled';
|
|
|
|
+ensureNativeModulesAreInstalled();
|
|
|
|
const nativeUuidv4 = globalThis?.expo?.uuidv4;
|
|
|
|
const nativeUuidv5 = globalThis?.expo?.uuidv5;
|
|
|
|
function uuidv4() {
|