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
This commit is contained in:
Prathamesh Deshmukh
2019-08-23 04:42:12 -07:00
committed by Facebook Github Bot
parent f9fa80d93b
commit eb875845b5

View File

@@ -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