Try running npx expo prebuild
or npx expo run:android
That would generate the native Android project, which is basically like the Bare workflow.
See the following post for some more details and what you can do:https://forums.expo.dev/t/should-i-exclude-ios/63094/4
In my case [sdk 47, eas-cli/3.9.2, darwin-x64, node-v19.6.1], with "appVersionSource": "remote"
in eas.json
file, changing the runtimeVersion: { policy: 'appVersion' }
in app.config.ts
file was helpful.
More read on runtimeVersion
in expo documentation.