File tree 2 files changed +2
-2
lines changed
ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 32
32
33
33
static NSURL *getInspectorDeviceUrl (NSURL *bundleURL)
34
34
{
35
- NSNumber *inspectorProxyPort = @8082 ;
35
+ NSNumber *inspectorProxyPort = @8081 ;
36
36
NSString *escapedDeviceName = [[[UIDevice currentDevice ] name ] stringByAddingPercentEncodingWithAllowedCharacters: NSCharacterSet .URLQueryAllowedCharacterSet];
37
37
NSString *escapedAppName = [[[NSBundle mainBundle ] bundleIdentifier ] stringByAddingPercentEncodingWithAllowedCharacters: NSCharacterSet .URLQueryAllowedCharacterSet];
38
38
return [NSURL URLWithString: [NSString stringWithFormat: @" http://%@ /inspector/device?name=%@ &app=%@ " ,
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public class AndroidInfoHelpers {
24
24
public static final String METRO_HOST_PROP_NAME = "metro.host" ;
25
25
26
26
private static final int DEBUG_SERVER_HOST_PORT = 8081 ;
27
- private static final int INSPECTOR_PROXY_PORT = 8082 ;
27
+ private static final int INSPECTOR_PROXY_PORT = 8081 ;
28
28
29
29
private static final String TAG = AndroidInfoHelpers .class .getSimpleName ();
30
30
You can’t perform that action at this time.
0 commit comments