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
This commit is contained in:
John Knox
2019-02-26 02:43:34 -08:00
committed by Facebook Github Bot
parent b8cb95ab0c
commit 9c4aa9b9cb

View File

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