Files
flipper/docs/troubleshooting.md
John Knox b635b7e4aa Add date and time check to troubleshooting docs (#336)
Summary:
Flipper uses SSL between device and computer.  If, for example, the time on the mobile device is outdated. The server cert on desktop may appear to be from the future, leading to the connection being rejected.
Pull Request resolved: https://github.com/facebook/flipper/pull/336

Reviewed By: danielbuechele

Differential Revision: D13234612

Pulled By: jknoxville

fbshipit-source-id: 5eccc3abc763deb5bce3520d880a522a9a32ec86
2018-11-29 09:07:02 -08:00

3.2 KiB

id, title, sidebar_label
id title sidebar_label
troubleshooting Troubleshooting Issues Troubleshooting Issues

We hope that flipper works well out of the box, but the software is a work in progress and problems will occur. Below are some known issues and steps you can take to try to resolve them.

Desktop app

Flipper won't launch

  • If the window is appearing, try opening Chrome dev tools within Flipper. To do so, from the View menu select Toggle Developer Tools or press CMD+Option+I and check if there are any errors on the console.
  • Launch Flipper from the command line using /Applications/Flipper.app/Contents/MacOS/Flipper This should give you some logs, that might be helpful when debugging.
  • Delete ~/.flipper and try relaunching Flipper
  • Delete Flipper from your applications folder and redownload Flipper
  • If you're using yarn start to run from source, make sure all dependencies are installed correctly by running yarn install

iOS Simulator missing from devices dropdown

  • Check that xcode-select -p shows the same xcode version that you're using. If not, see xcode-select for how to select the correct version.

No plugins showing up for your device

  • Check your device isn't on the list of known incompatibilities
  • Make sure your version of Flipper is up to date.
  • Make sure the mobile SDK you are using is relatively recent (<1 month old).
  • Open Chrome dev tools within Flipper. To do so, from the View menu select Toggle Developer Tools or press CMD+Option+I and check if there are any errors on the console.
  • Delete ~/.flipper
  • Uninstall and reinstall the mobile app.
  • Make sure the time and date are set correctly on your mobile device and desktop computer.
  • If no app plugins are showing up, there may be a connectivity issue between Flipper and your app. Check connection issues to see if anything is failing.

Connection Issues

The Flipper SDK includes an in-app connection diagnostics screen to help you diagnose problems.

Android

Replace <APP_PACKAGE> below with the package name of your app, e.g. com.facebook.flipper.sample. On a terminal, run the following:

adb shell am start -n <APP_PACKAGE>/com.facebook.flipper.android.diagnostics.FlipperDiagnosticActivity

This will only work if you added FlipperDiagnosticActivity to your AndroidManifest.xml. See getting started for help.

iOS

You'll need to manually add this ViewController to your app to see the in-app diagnostics.

Known Incompatibilities

The following devices are known to be incompatible or face issues with flipper:

  • Physical iOS devices. Currently on iOS, only simulators are supported. GitHub Issue
  • Some Samsung devices. GitHub Issue
  • Genymotion emulators on Android 8+ are reported to have issues.

File an Issue

Still not working? File an issue on GitHub with the chrome dev tools logs and the output from the diagnostics screen, if relevant.