Kerry
Kerry
Same issue here, fresh install RN (0.69.0-rc.3) and reanimated (3.0.0-rc.0)
Figured out my issue, I believe I installed react-native via an old react-native-cli. The errors above were due to having 0.68.2 versions of pods being installed even though i had...
@runtothedoor Sorry for the late reply. I am using on an emulator (don't have a real device handy). I have tried on both Mac and Windows emulators through Android Studio....
@bghgary I added a link to a repo above that is very bare bones does that crash for you? Basically even just a call to useEngine crashes the emulator for...
@theonetheycallneo I am using 0.68.x and I have no issue on iOS, on Android (even with 1.3.0-preview) it crashes as soon as a call to `useEngine` is made Could be...
@theonetheycallneo Creating a repo to give you a minimum example of it working along with the crash on android (for a future bug report), I'll send it to you soon
@theonetheycallneo here you go: https://github.com/kerryaustin/RNBabylon68 This uses the 1.3.0-preview packages but should work exactly the same with 1.2.0
Seems on iOS >=10 JSON1 is enabled by default and the following works ``` export class Entity extends Model { public static table = 'entities'; @text('name') public name!: string; @json('data',...
@arun-saleth sorry I am a year late, we ended up only needing to support iOS > 15 and not android, so the above snippet worked for when we needed to...