TypeError: global.performance.now is not a function
make change to this file: node_modules/react-native-reanimated/src/reanimated2/core.ts Line 386, remove this:
global.performance = {
now: global._chronoNow,
};
then add this:
if(global.performance == null) {
global.performance = {
now: global._chronoNow,
};
}