You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 20, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
react-native-code-push
2
2
===
3
3
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.
5
5
6
6
Installation
7
7
---
@@ -10,7 +10,7 @@ Installation
10
10
npm install --save react-native-code-push
11
11
```
12
12
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.
14
14
15
15
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.
16
16
@@ -26,7 +26,7 @@ Replace it with the following:
26
26
jsCodeLocation = [CodePush getBundleUrl];
27
27
```
28
28
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.
30
30
31
31
Methods
32
32
---
@@ -46,7 +46,7 @@ Getting Started:
46
46
47
47
* Add the plugin to your app
48
48
* 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.
50
50
51
51
Running the Example
52
52
---
@@ -99,10 +99,10 @@ Contains details about an update package that is available for download.
99
99
-__downloadUrl__: The URL at which the package is available for download. (String)
100
100
101
101
### 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.
0 commit comments