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
Please use the Community Template as a reference point for the [Gemfile](https://github.com/react-native-community/template/blob/0.78-stable/template/Gemfile) and for the [Podfile](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile).
116
116
117
117
:::note
118
-
Remember to change [this line](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile#L17) and [this line](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile#L26) of the Podfile to match the name of your app.
119
-
120
-
If your app don't have tests, remember to remove [this block](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile#L26-L29).
118
+
Remember to change [this line](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile#L17).
121
119
:::
122
120
123
121
Now, we need to run a couple of extra commands to install the Ruby gems and the Pods.
@@ -258,6 +256,8 @@ Now open the `ReactViewController.m` file and apply the following changes
258
256
+#import <React/RCTBundleURLProvider.h>
259
257
+#import <RCTReactNativeFactory.h>
260
258
+#import <RCTDefaultReactNativeFactoryDelegate.h>
259
+
+#import <RCTAppDependencyProvider.h>
260
+
261
261
262
262
@interface ReactViewController ()
263
263
@@ -275,7 +275,8 @@ Now open the `ReactViewController.m` file and apply the following changes
275
275
- (void)viewDidLoad {
276
276
[super viewDidLoad];
277
277
// Do any additional setup after loading the view.
Please use the Community Template as a reference point for the [Gemfile](https://github.com/react-native-community/template/blob/0.78-stable/template/Gemfile) and for the [Podfile](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile).
116
116
117
117
:::note
118
-
Remember to change [this line](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile#L17) and [this line](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile#L26) of the Podfile to match the name of your app.
119
-
120
-
If your app don't have tests, remember to remove [this block](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile#L26-L29).
118
+
Remember to change [this line](https://github.com/react-native-community/template/blob/0.78-stable/template/ios/Podfile#L17).
121
119
:::
122
120
123
121
Now, we need to run a couple of extra commands to install the Ruby gems and the Pods.
@@ -258,6 +256,7 @@ Now open the `ReactViewController.m` file and apply the following changes
258
256
+#import <React/RCTBundleURLProvider.h>
259
257
+#import <RCTReactNativeFactory.h>
260
258
+#import <RCTDefaultReactNativeFactoryDelegate.h>
259
+
+#import <RCTAppDependencyProvider.h>
261
260
262
261
@interface ReactViewController ()
263
262
@@ -275,7 +274,8 @@ Now open the `ReactViewController.m` file and apply the following changes
275
274
- (void)viewDidLoad {
276
275
[super viewDidLoad];
277
276
// Do any additional setup after loading the view.
0 commit comments