Skip to content

Commit 7fb65bd

Browse files
committed
update ip
1 parent 2da7c02 commit 7fb65bd

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

Example/ios/Example.xcodeproj/project.pbxproj

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,6 @@
110110
00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
111111
00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = "<group>"; };
112112
00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = "<group>"; };
113-
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
114-
00E356F21AD99517003FC87E /* ExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExampleTests.m; sourceTree = "<group>"; };
115113
01BBD30C1C90762F000A3935 /* RNImagePicker.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNImagePicker.xcodeproj; path = ../../ios/RNImagePicker.xcodeproj; sourceTree = "<group>"; };
116114
139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
117115
139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
@@ -189,23 +187,6 @@
189187
name = Products;
190188
sourceTree = "<group>";
191189
};
192-
00E356EF1AD99517003FC87E /* ExampleTests */ = {
193-
isa = PBXGroup;
194-
children = (
195-
00E356F21AD99517003FC87E /* ExampleTests.m */,
196-
00E356F01AD99517003FC87E /* Supporting Files */,
197-
);
198-
path = ExampleTests;
199-
sourceTree = "<group>";
200-
};
201-
00E356F01AD99517003FC87E /* Supporting Files */ = {
202-
isa = PBXGroup;
203-
children = (
204-
00E356F11AD99517003FC87E /* Info.plist */,
205-
);
206-
name = "Supporting Files";
207-
sourceTree = "<group>";
208-
};
209190
01BBD30D1C90762F000A3935 /* Products */ = {
210191
isa = PBXGroup;
211192
children = (
@@ -290,7 +271,6 @@
290271
children = (
291272
13B07FAE1A68108700A75B9A /* Example */,
292273
832341AE1AAA6A7D00B99B32 /* Libraries */,
293-
00E356EF1AD99517003FC87E /* ExampleTests */,
294274
83CBBA001A601CBA00E9B192 /* Products */,
295275
);
296276
indentWidth = 2;

Example/ios/Example/AppDelegate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
3333
if (TARGET_IPHONE_SIMULATOR) {
3434
jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];
3535
} else {
36-
jsCodeLocation = [NSURL URLWithString:@"http://10.1.100.2:8081/index.ios.bundle?platform=ios&dev=true"]; // Change this to your IP if you want to test on device
36+
jsCodeLocation = [NSURL URLWithString:@"http://192.168.1.32:8081/index.ios.bundle?platform=ios&dev=true"]; // Change this to your IP if you want to test on device
3737
}
3838

3939
/**

0 commit comments

Comments
 (0)