如何修复 AsyncStorage 已从 React-Native 核心中删除

问题描述 投票:0回答:1

我尝试使用 firebase 验证我的注册,因此在注册屏幕上,仅当我从 '../firebase' 导入 { auth } 时才会出现错误;如果我评论它,代码工作正常,但如果尝试在我的sign up.js屏幕中使用它,如果我从'@react-native-async-storage/async-storage'导入AsyncStorage,我会收到上面和图片中的错误;代码工作正常,但没有错误,但无法进行身份验证,但如果我添加 import { auth } from '../firebase';我收到图片中的错误

我有堆栈,所以请拆开我

dom document-ready
1个回答
0
投票

尝试卸载

node-module, package-lock(if you are using npm)or yarn(if you are using yarn)
。删除package.json中所有与firebase相关的包。然后运行
npm install or yarn install
使用expo官方文档安装firebase https://docs.expo.dev/guides/using-firebase/

然后运行

expo r -c

© www.soinside.com 2019 - 2024. All rights reserved.