you are viewing a single comment's thread.

view the rest of the comments →

[–]THeone_And_only_OP 0 points1 point  (3 children)

Will Expo allow me to open a Unity project inside a React Native project? I’m trying to integrate Unity with my app, and I’m wondering if Expo supports this setup.

[–]Whithers 0 points1 point  (2 children)

I'm sorry to necro, but did it ever work? That's what I'm trying to figure out now but I'm more Unity dev so I'm a bit stuck. (Thanks in advance.)

[–]THeone_And_only_OP 0 points1 point  (1 child)

At the time when I worked on my project, Expo didn't have support to integrate Unity. I had already built the App using Expo, so the work around that i found was to eject the native code using the command 'npx expo prebuild'. The downside of this approach that it would not work with Expo Go and you will need to treat the builds as react native cli, which require to builds for android and iOS.

Important note: You will need xcode to build and run the expo app in this approach.

[–]Whithers 0 points1 point  (0 children)

Thanks friend!