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
Extra installation step needed on React Native 0.60(+) (see [issue #28](https://github.com/brodybits/create-react-native-module/issues/28)):
202
+
Extra installation step needed _in case of clean checkout only_:
199
203
200
204
```
201
205
cd ios && pod install && cd ..
@@ -213,7 +217,7 @@ or do the following command to open the iOS project in Xcode:
213
217
open ios/example.xcodeproj
214
218
```
215
219
216
-
__Expected result:__
220
+
#### Expected result
217
221
218
222
The example app shows the following indications:
219
223
@@ -238,17 +242,26 @@ Then go into the example app subdirectory:
238
242
cd react-native-carol-widget/example
239
243
```
240
244
241
-
__Within the example test app subdirectory:__
245
+
#### Running the view example app
246
+
247
+
**Recommended:** Follow the instructions shown in the end of the console log output, which are more likely to be up-to-date.
248
+
249
+
__Some extra notes:__
250
+
251
+
_Within the example test app subdirectory:_
242
252
243
253
It is *recommended* to start the Metro Bundler manually as described above (within `react-native-carol-widget/example`):
244
254
245
255
```
246
-
npm start
256
+
yarn start
247
257
```
248
258
249
259
To run on Android: do `react-native run-android` as described for the other example above.
250
260
251
-
To run on iOS: do `pod install` in `ios` subdirectory for React Native 0.60(+) (see above), then do `react-native run-ios` or `open ios/example.xcodeproj` as described for the other example above.
261
+
To run on iOS (as described above):
262
+
263
+
-_in case of clean checkout **only**_: do `pod install` in `ios` subdirectory
264
+
- do `react-native run-ios` or `open ios/example.xcodeproj`
0 commit comments