Jake Foraker

Results 27 comments of Jake Foraker

Same issue for me, were you able to resolve it @srt199?

You have to comment out the following lines of of View.js so it looks like this: // Create optional drag-on-container functionality // if (containerSlideDelay > -1) { // container.element.on({ //...

Same with Webstorm: ``` Failed to start IPC process. com.teamdev.jxbrowser.chromium.internal.ipc.IPCException: Failed to start IPC process. at com.teamdev.jxbrowser.chromium.internal.ipc.d.run(Unknown Source) at java.lang.Thread.run(Thread.java:695) Caused by: java.lang.RuntimeException: java.io.IOException: Cannot run program "/var/folders/yv/1djww2q95bn28019dp9tfkmc0000gn/T/jxbrowser-chromium-43.0.2357.52.5.4.3/jxbrowser.app/Contents/MacOS/jxbrowser" (in directory...

Same! Let me know if you find a workaround. My use case is to validate the file size in real time / or once per tick from `addRecordBackListener` Strange `addRecordBackListener`...

@11OClock -- are you saying YOUR app had the bad character or the podfile for this library had the bad character? Here's what I see for the pod: ![image](https://user-images.githubusercontent.com/2042031/190018444-77cff8eb-82bb-45cb-b2af-7fc5b2b402ed.png)

@AlenToma you should probably do that on the react-native side, with a simple value such as: ```js AsyncStorage.setItem(REVIEW_DONE_KEY, 'true'); ``` And then check it later: ```js const reviewDone = await...

There is an unmerged PR https://github.com/jasongaare/react-native-walkthrough-tooltip/pull/105 . It happens quite frequently for us as well

> so I hope I've done everything correctly Hey so this is cool, however there's one thing that is not quite correct.. By the looks of the diff in github,...

lock to what orientation? either way the documentation is clear as day: ``` if (Platform.isPad) { Orientation.lockToPortrait(); } ```

I had the same experience using in conjunction with `react-native-audio-recorder-player`, and found that wrapping my record function in a setTimeout resolved the issue: ```js ReactNativeHapticFeedback.trigger('impactHeavy'); setTimeout(() => { startRecording(); });...