From 9c4aa9b9cb515c9b6b213f1218f1ade4d30c1207 Mon Sep 17 00:00:00 2001 From: John Knox Date: Tue, 26 Feb 2019 02:43:34 -0800 Subject: [PATCH] Call out SoLoader.init in getting started docs Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/383 Reviewed By: danielbuechele Differential Revision: D14208864 Pulled By: jknoxville fbshipit-source-id: 54a319a4b6a658ae49ed90223463ddf7a07bb9c7 --- docs/getting-started.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 334c3f0b3..e214810b8 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -53,7 +53,9 @@ dependencies { } ``` -Now you can initialize Flipper in your Application's `onCreate`-method like this: +Now you can initialize Flipper in your Application's `onCreate` method like this: + +It's important that `SoLoader.init(this, false);` is called at some point before the Flipper client is initialized. This allows the c++ part of Flipper to be loaded. ```java public class MyApplication extends Application {