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

Commit 3c4cd60

Browse files
author
Will Anderson
committed
Update 'Code Push' references to 'CodePush'
1 parent 9189069 commit 3c4cd60

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
react-native-code-push
22
===
33

4-
React Native module for deploying script updates using the Code Push service.
4+
React Native module for deploying script updates using the CodePush service.
55

66
Installation
77
---
@@ -10,7 +10,7 @@ Installation
1010
npm install --save react-native-code-push
1111
```
1212

13-
After installing the React Native Code Push plugin, open your project in Xcode. Open the `react-native-code-push` in Finder, and drag the `CodePush.xcodeproj` into the Libraries folder of Xcode.
13+
After installing the React Native CodePush plugin, open your project in Xcode. Open the `react-native-code-push` in Finder, and drag the `CodePush.xcodeproj` into the Libraries folder of Xcode.
1414

1515
In Xcode, click on your project, and select the "Build Phases" tab of your project configuration. Drag libCodePush.a from `Libraries/CodePush.xcodeproj/Products` into the "Link Binary With Libraries" secton of your project's "Build Phases" configuration.
1616

@@ -26,7 +26,7 @@ Replace it with the following:
2626
jsCodeLocation = [CodePush getBundleUrl];
2727
```
2828

29-
This change allows Code Push to load the updated app location after an update has been applied.
29+
This change allows CodePush to load the updated app location after an update has been applied.
3030

3131
Methods
3232
---
@@ -46,7 +46,7 @@ Getting Started:
4646

4747
* Add the plugin to your app
4848
* Open your app's `Info.plist` and add a "CodePushDeploymentKey" entry with your app's deployment key
49-
* To publish an update for your app, run `react-native bundle`, and then publish `iOS/main.jsbundle` using the Code Push CLI.
49+
* To publish an update for your app, run `react-native bundle`, and then publish `iOS/main.jsbundle` using the CodePush CLI.
5050

5151
Running the Example
5252
---
@@ -99,10 +99,10 @@ Contains details about an update package that is available for download.
9999
- __downloadUrl__: The URL at which the package is available for download. (String)
100100

101101
### Methods
102-
- __download(): Promise<LocalPackage>__: Downloads the package update from the Code Push service. Returns a Promise that resolves with the LocalPackage.
102+
- __download(): Promise<LocalPackage>__: Downloads the package update from the CodePush service. Returns a Promise that resolves with the LocalPackage.
103103

104104
## codePush.checkForUpdate
105-
Queries the Code Push server for updates.
105+
Queries the CodePush server for updates.
106106
```javascript
107107
codePush.checkForUpdate(): Promise<RemotePackage>;
108108
```

0 commit comments

Comments
 (0)