I don't know if that is your case, but this issue happened with me because I had to change the bundleIdentifier of my app.
I did all the steps:
- Changed the bundleIdentifier on Info.plist and app.json files.
- Built the application again for the local profile with ios.simulator: true
- Installed the app on the simulator after the build (eas build command asks if you want to install it on the local simulator)
When I ran my app on the simulator I got the message:
Device iPhone 15 (xxxxx) has no app to handle the URI: (my.old.scheme)://expo-development-client/?url=http%3A%2F%2F192.168.0.134%3A8081
I was running my app using the command npx expo start --dev-client --ios
After adding the parameter --scheme (my.new.scheme) and forcing the simulator to open the new installed app (with the new scheme) it worked.
I hope that makes sense.