Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 231d7c4

Browse files
committed
Fixing typo
1 parent bebb205 commit 231d7c4

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -308,16 +308,17 @@ Once you've acquired the CodePush plugin, you need to integrate it into the Visu
308308

309309
### Plugin Configuration (Windows)
310310

311-
After installing the plugin, you need to configure your app to consult CodePush for the location of your JS bundle, since it will "take control" of managing the current and all future versions. To do this, update the `AppReactage.cs` file to use CodePush via the following changes:
311+
After installing the plugin, you need to configure your app to consult CodePush for the location of your JS bundle, since it will "take control" of managing the current and all future versions. To do this, update the `AppReactPage.cs` file to use CodePush via the following changes:
312312

313313
```c#
314314
...
315315
// 1. Import the CodePush namespace
316-
using CodePush;
317-
318-
public class MainActivity extends ReactActivity {
316+
using CodePush.ReactNative;
317+
...
318+
class AppReactPage : ReactPage
319+
{
319320
// 2. Update the JavaScriptBundleFile property to return the
320-
// bundle URL from CodePush instead of staticaly from the binary
321+
// bundle URL from CodePush instead of statically from the binary
321322
public override string JavaScriptBundleFile
322323
{
323324
get

0 commit comments

Comments
 (0)