Questions tagged [fbflipper]

24 questions
13
votes
5 answers

Error in Pods/RCT-Folly/folly/portability/Time.h and Typedef redefinition with different types ('uint8_t' (aka 'unsigned char') vs 'enum clockid_t')

I'm reviewing the source code of a react native project, but I'm having issues building it. After running the following npm install at the root of the project pod install at the ios folder I got the following message in the terminal: sh: -c: line…
11
votes
3 answers

Flipper: Flipper Hermes debugger does not show

Flipper Hermes debugger does not show I would like to ask how to make him display normally? react-native:0.62.2 (Update from 0.61 to 0.62.2) https://fbflipper.com/ https://reactnative.dev/docs/hermes error message: Metro is connected but no Hermes…
ebyte
  • 1,469
  • 2
  • 17
  • 32
10
votes
6 answers

'FlipperKit/FlipperClient.h' file not found

Im trying to migrate RN Version from 0.61.5 to 0.62.0 to get use of Flipper tool for Debugging and profiling purpose. As part of this migration i have followed upgrade helper tool from RN documentation. After integration , when i was trying to build…
Kartiikeya
  • 2,358
  • 7
  • 33
  • 68
9
votes
1 answer

Flipper: Hermes debugger cannot connect error: "Debugging connection was closed"

I have downloaded and setup flipper desktop on my windows machine and I am able to run all its features properly including react devtools but somehow hermes debugger doesn't work and shows error message "Debugging connection was closed". I am using…
Rahul Singh
  • 892
  • 9
  • 24
8
votes
0 answers

How do I prevent React Native devtools from launching in the browser when I enable debugging?

I'm attempting to debug my React Native app with Flipper, and every time I open the developer menu and choose Debug, it launches a browser tab with the debugging UI. This doesn't happen when I have React Native Debugger running, but for some reason…
swrobel
  • 4,053
  • 2
  • 33
  • 42
4
votes
1 answer

Flipper + Flutter error : Undefined symbols for architecture arm64

I integrate Flipper in my Flutter app, it worked very well in both Android and iOS emulator and real-devices,but I had a problem here : I can't archive build on xCode to export ipa file. flutter_flipperkit: 0.0.22 Undefined symbols for architecture…
Tai Tran
  • 1,406
  • 3
  • 15
  • 27
3
votes
0 answers

Flipper React-Navigation when trying to view routes throws error

I'm trying to use Flippers React-Native-Navigation plugin to view some routes and how they act in my app and for some reason the plugin throws this error. TypeError: Cannot read property 'map' of undefined at RouteMap…
Orçun Güler
  • 118
  • 1
  • 6
3
votes
1 answer

React Native- Using Hermes with Flipper disabled on iOS

I'm having a hard time using Flipper. I commented it out in Podfile while hermes_enabled => true. I ran pod install agin and build the app but it crashed upon launch. When I set Hermes to false, it was build successfully. Is there a way to…
Hadis
  • 535
  • 3
  • 11
  • 31
3
votes
1 answer

React Native Facebook Flipper Thread 9: EXC_BAD_ACCESS (code=1, address=0x20...1)

i'm having some issues with Flipper, never had it before so not sure if it's with their update or what's happening. Would love some help on it! This is the error that i'm getting: I'm in Xcode Version 12.4 Let me know what else i can send you, here…
3
votes
1 answer

Flipper Network Plugin doesn't show network requests

According to the documents here, I followed the necessary steps. Yet, even though I can see the requested data when I debug my app, I see no network traffic on Flipper. Here is my code: Dependencies: debugImplementation…
Şevval
  • 86
  • 1
  • 7
2
votes
0 answers

Multiple commands produce OpenSSL.xcframework when using React Native Flipper

I already have an OpenSSL framework added to my Xcode workspace. Env (Xcode 12.5, React-native 0.65.1) When I add Flipper, I get the below error as Flipper-Folly is also creating an Openssl framework Multiple commands produce…
Amit
  • 2,389
  • 22
  • 29
2
votes
1 answer

Display inline log in flipper into multiple line

I'm using react native and the new flipper debugger. I have a very simple question, currently when i log a big object it only display in one line like this : Is there a way to display it in a better way like in chrome debugger tools like this : As…
foufrix
  • 1,324
  • 4
  • 21
  • 45
1
vote
0 answers

Flipper: Connection Error on fresh install on Mac

Getting the following error on a fresh install of Flipper on Mac: Connection error Couldn't start connection server. Looks like you have multiple copies of Flipper running or another process is using the same port(s). As a result devices will not be…
Ben
  • 5,085
  • 9
  • 39
  • 58
1
vote
0 answers

how to use fbFlipper flipper interceptor with HTTPURLConnection

having code uses HttpURLConnectionfor post the remote service. HttpURLConnection connection = null; final int CLIENT_SESSION_TTL = 300000; try { connection = mUrl.openConnection(); connection.setDoOutput(true); …
lannyf
  • 9,865
  • 12
  • 70
  • 152
1
vote
2 answers

Flipper plugins not working with react-native app

I have react-native application in which I am using port 8383 port (I CAN NOT use default port 8081) for metro bundler. While debugging app with Flipper it's showing most of the plugins like Hermes/react dev-tool etc are not available.After reading…
1
2