jensdev

Results 9 comments of jensdev

@elalish any update on this? Would love this feature, especially in AR. So you could add a new table / chairs to your dining room

@elalish Thanks for the update. Would be really nice to build a scene in a declarative way with different model files which can be moved/rotated. Can we see the current...

@jcdogo thanks for your work. @thomseddon any idea on when this will land?

@caiosba Could you have a look at this?

It seems to be caused by the `scheduler` package. https://github.com/facebook/react/blob/main/packages/scheduler/src/forks/Scheduler.js#L560 Which points to this issue: https://github.com/facebook/react/issues/20756 Which points to a fix here: https://github.com/facebook/react/issues/20756#issuecomment-780927519 but React 17.1.0 never came I guess....

Any update on this? I'm facing the same issue. ``` FATAL EXCEPTION: main Caused by: java.lang.RuntimeException: Using WebView from more than one process at once with the same data directory...

Until this merges. You can use the snippet below. Put this in `patches/react-native-receive-sharing-intent+2.0.0.patch` and use https://www.npmjs.com/package/patch-package ``` diff --git a/node_modules/react-native-receive-sharing-intent/android/src/main/java/com/reactnativereceivesharingintent/ReceiveSharingIntentModule.java b/node_modules/react-native-receive-sharing-intent/android/src/main/java/com/reactnativereceivesharingintent/ReceiveSharingIntentModule.java index f752144..d2542f9 100644 --- a/node_modules/react-native-receive-sharing-intent/android/src/main/java/com/reactnativereceivesharingintent/ReceiveSharingIntentModule.java +++ b/node_modules/react-native-receive-sharing-intent/android/src/main/java/com/reactnativereceivesharingintent/ReceiveSharingIntentModule.java @@ -18,6...

I had the same error. Try setting a kotlinVersion in your android/build.gradle file. ``` buildscript { ext { kotlinVersion = "1.6.0" ``` Works for me on RN 0.69.4

Had a similar issue in bare React-Native app in Xcode 14 after upgrading to `"react-native-flipper": "^0.176.0"`. Downgrading fixed it.