Tutorial: Here I leave the Solution to after updating Expo SDK 52 to 53 - ERROR: Component auth has not been registered yet, js engine: hermes

  • Autor Autor gdninf
  • Fecha de inicio Fecha de inicio
G

gdninf

Curioso
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Create the Metro file if you don't have it in the project root with the command npx expo customize metro.config.js and inside:

const { getDefaultConfig } = require('@expo/metro-config');
const defaultConfig = getDefaultConfig(__dirname);
defaultConfig.resolver.sourceExts.push('cjs');
defaultConfig.resolver.unstable_enablePackageExports = false;
module.exports = defaultConfig;

OJO
but before running npx expo-doctor

and verify that there are no conflicts with the Firebase/App versions
 
you may need to update or adjust the versions of these dependencies in your package.json file.
 
I solved it just like I posted above, only before I deleted node.modules and then reinstalled with npm install and then did what I explained above and that's it, it's super good.
 
Atrás
Arriba