File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ If you are using a non-QWERTY/AZERTY keyboard layout you can use the `Hardware >
2020
2121Something is probably already running on port 8081. You can either kill it or try to change which port the packager is listening to.
2222
23- ### Kill process on port 8081
23+ ##### Kill process on port 8081
2424` $ sudo lsof -n -i4TCP:8081 | grep LISTEN `
2525
2626then
2929
3030
3131
32- ### Change the port in Xcode
32+ ##### Change the port in Xcode
3333Edit ` AppDelegate.m ` to use a different port.
3434```
3535 // OPTION 1
@@ -41,3 +41,12 @@ Edit `AppDelegate.m` to use a different port.
4141 // iOS device are on the same Wi-Fi network.
4242 jsCodeLocation = [NSURL URLWithString:@"http://localhost:9381/index.ios.bundle"];
4343 ```
44+
45+
46+ ## Watchman took too long to load
47+ Permission settings prevent Wathcman to load. A recent update solves this, get a HEAD install of Watchman if you are experiening this error.
48+
49+ ```
50+ brew uninstall watchman
51+ brew install --HEAD watchman
52+ ```
You can’t perform that action at this time.
0 commit comments