From e11871694b0b5f06eb6980f0f444b92f404f1d1c Mon Sep 17 00:00:00 2001 From: Esco Obong Date: Thu, 24 May 2018 10:52:23 +0100 Subject: [PATCH] getUseDeveloperSupport is now public A breaking change made `getUseDeveloperSupport` public https://github.com/facebook/react-native/pull/11329 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e3dfdc..bc9762a 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override - protected boolean getUseDeveloperSupport() { + public boolean getUseDeveloperSupport() { return BuildConfig.DEBUG; }