Files
flipper/docs/share-flipper-data.md
Pritesh Nandgaonkar fd9b581162 Documentation for sharing flipper data
Summary: Added documentation for the Flipper's Import/Export feature

Reviewed By: passy

Differential Revision: D14539133

fbshipit-source-id: 66f85c46edd4ca644d2bbcd6e47dd9c88aa3618c
2019-03-20 06:59:28 -07:00

2.2 KiB

id, title
id title
share-flipper-data Share Flipper Data 📦

Flipper provides rich diagnostic and profiling data. It's used by mobile engineers to debug issues. It lets you share what you're seeing from your Flipper application, so other developers can open it and explore a snapshot of the data, as if they had the device connected.

Export Flipper Data

You can export Flipper data as a .flipper file. For the export to work, there should be an active device connected to the Flipper application. Make sure you have a device connected to Flipper, by looking for the device name in the following rectangle in the toolbar of the Flipper application:

selectedDevice

To export Flipper data as a .flipper file, follow these steps:

  1. Click on “File” in the menu bar.
  2. Click on “Export”.
  3. Click on “File...”.
  4. You can combine the above steps by using the shortcut ⌘E.
  5. After the above steps, a dialog allows you to select the location and change the filename.
  6. Wait for the file to appear at the specified location. No loading indicator appears in this case (we are working on it).
  7. Once the file appears, share the file with your colleagues. Bear in mind that the file will include all the data available to the plugins, including any access tokens in the recorded network requests.

Import Flipper Data

There are multiple ways to open a .flipper file.

Easiest Way

  1. Double click the .flipper file, it would automatically open Flipper and import its data. So cool! 😎

From UI

  1. Open Flipper and click on the “File” in the menu bar

  2. Click Open File...

    Or

  3. Open Flipper and click on the device dropdown

  4. Find the Open File... option at the bottom of the dropdown

    Or

Use Shortcut ⌘O

  1. A dialog will show up, select the file and click on Open

  2. You will now have imported the Flipper data. You would see an offline (archived device) being created, which looks like the following image.

importedDevice

For any queries and bugs, please create a GitHub issue.