From a31a0122d9b0ea0eb2e2293d4f1647d0f3cc92ac Mon Sep 17 00:00:00 2001 From: Raj Suvariya Date: Fri, 28 Jul 2017 11:58:02 -0700 Subject: [PATCH] Update IntegrationWithExistingApps.md Summary: The name should be "MyReactNativeApp" otherwise it gives error that the HelloWorld Application is not found Closes https://github.com/facebook/react-native/pull/15251 Differential Revision: D5518727 Pulled By: hramos fbshipit-source-id: d9a2eac4698927f17f25a2316bd5674bb227821e --- docs/IntegrationWithExistingApps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/IntegrationWithExistingApps.md b/docs/IntegrationWithExistingApps.md index 7cfb9c52cb..a5e0b337b0 100644 --- a/docs/IntegrationWithExistingApps.md +++ b/docs/IntegrationWithExistingApps.md @@ -684,7 +684,7 @@ public class MyReactActivity extends Activity implements DefaultHardwareBackBtnH .setUseDeveloperSupport(BuildConfig.DEBUG) .setInitialLifecycleState(LifecycleState.RESUMED) .build(); - mReactRootView.startReactApplication(mReactInstanceManager, "HelloWorld", null); + mReactRootView.startReactApplication(mReactInstanceManager, "MyReactNativeApp", null); setContentView(mReactRootView); }