Please provide the following:
- SDK Version: 6.3.1
- Platforms(Android/iOS/web/all): Android
- Add the appropriate “Tag” based on what Expo library you have a question on.
I followed all instructions here Working with monorepos - Expo Documentation. It builds and works for web. It does not work on Android with the error (on emulated and real devices):
Android Bundling failed 911ms
Unable to resolve "@babel/runtime/helpers/interopRequireDefault" from "index.js"
I changed
const workspaceRoot = path.resolve(projectRoot, '../..');
to
const workspaceRoot = path.resolve(projectRoot, '../');
And now it works. I am on Windows.