From eb875845b54aefb92031ac70627ab5c680e31fa4 Mon Sep 17 00:00:00 2001 From: Prathamesh Deshmukh <33200259+prathamudeshmukh@users.noreply.github.com> Date: Fri, 23 Aug 2019 04:42:12 -0700 Subject: [PATCH] Add missing imports in getting-started.md (#514) Summary: Added some missing imports in the Android getting started documentation. By adding these imports, the compilation will not fail. ## Changelog Updated the getting-started documentation for android Pull Request resolved: https://github.com/facebook/flipper/pull/514 Test Plan: Add the imports and the build should run successfully Reviewed By: passy Differential Revision: D16919073 Pulled By: priteshrnandgaonkar fbshipit-source-id: 30144f440d312effec289b60af6ca537df344cd2 --- docs/getting-started.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/getting-started.md b/docs/getting-started.md index 5654e7610..6741c31d9 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -61,6 +61,10 @@ Now you can initialize Flipper in your Application's `onCreate` method, which in initializing SoLoader (for loading the C++ part of Flipper) and starting a `FlipperClient`. ```java +import com.facebook.flipper.android.AndroidFlipperClient; +import com.facebook.flipper.android.utils.FlipperUtils; +import com.facebook.flipper.core.FlipperClient; + public class MyApplication extends Application { @Override