From 2076fc8fd16b1b24da18d1db00251015e03e6c59 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 19 Jun 2018 06:02:41 -0700 Subject: [PATCH] Fix Android getting started docs Summary: `SoLoader.init(Context, int)` isn't what we want as it can raise an `IOException` (checked) and implies exo-package. I suppose this was meant to be `(Context, boolean)`. Reviewed By: jknoxville Differential Revision: D8512345 fbshipit-source-id: 7fad2a3788e64149fc02e3446db2c71412ccb43d --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index b5eca1a9f..7bc379548 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -43,7 +43,7 @@ public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); - SoLoader.init(this, 0); + SoLoader.init(this, false); if (BuildConfig.DEBUG && SonarUtils.shouldEnableSonar(this)) { final SonarClient client = AndroidSonarClient.getInstance(this);