We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e30d29c commit c1a8644Copy full SHA for c1a8644
README.md
@@ -41,11 +41,18 @@ npm install @bravemobile/react-native-code-push
41
42
For React Native CLI projects, you can use the automatic setup command to configure your project for CodePush.
43
44
+This command will automatically edit your `AppDelegate` and `MainApplication` files to integrate CodePush.
45
+
46
```bash
47
npx code-push init
48
```
49
-This command will automatically edit your `AppDelegate` and `MainApplication` files to integrate CodePush.
50
+And run the following command to install CocoaPods dependencies for iOS:
51
52
+```bash
53
+cd ios && pod install && cd ..
54
+```
55
+(or `npx pod-install`, `bundle exec pod install --project-directory=./ios`, ..)
56
57
### 2-1. Manual Setup
58
0 commit comments