Refactor mobile to fix dependency resolution and add polyfills

Update Expo and React dependencies to compatible versions. Create a
custom Metro config to resolve module conflicts in the workspace and
map Jest modules to local node_modules.

Add a SharedArrayBuffer polyfill for older runtimes and introduce an
adapter for expo-notifications to abstract direct imports.
This commit is contained in:
2026-05-12 22:29:38 +02:00
parent 3c6df95a86
commit 316e5def72
13 changed files with 371 additions and 150 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { useEffect } from 'react';
import * as Notifications from 'expo-notifications';
import * as Notifications from './src/services/expoNotifications';
import AppNavigator from './src/navigation/AppNavigator';
export default function App() {