I need more information about how you're running your Expo app. Are you using Expo Go, a Development Build, or running it the plain React Native way (e.g., npm run android)?
Just a reminder: if you're using Expo, it's highly recommended to run your app using one of the following methods:
Expo Go, This runs your app using the Expo Go client by scanning a QR code. It's great for quick testing and doesn't require a custom build.
Development Build, this runs your app in a custom environment, allowing you to make deeper changes and use native libraries or packages that are not supported by Expo Go
⚠️ Avoid running your Expo app the same way you would run a plain React Native project (e.g., npx react-native run-android), as this is not the intended workflow with Expo.
if you already run your expo app using those 2 corrected method and still get the same issue, then try to run your app again using this command
npx expo start --clear
for more information about how develop and run expo app, you can check here