I am working on a react-native project and I run it on emulator android(AVD manager)admin管理员组文章数量:1339702
i have run adb reverse tcp:8081 tcp:8081 at cmd , but still my emulator stuck Whenever i am changing my project and reload emulator!
Development Operating System:Windows 10
React Native version: 0.55.4enter image description here
I am working on a react-native project and I run it on emulator android(AVD manager)i have run adb reverse tcp:8081 tcp:8081 at cmd , but still my emulator stuck Whenever i am changing my project and reload emulator!
Development Operating System:Windows 10
React Native version: 0.55.4enter image description here
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Jul 31, 2018 at 22:25 MahdaviMahdavi 812 silver badges7 bronze badges 2-
What is running at
10.0.2.2
, and can the Android (Emulator) properly route packets to that address? – Matt Clark Commented Jul 31, 2018 at 22:28 - i don't know what is running at 10.0.2.2!!, when i am running react-native run-android ,it build successful – Mahdavi Commented Aug 1, 2018 at 8:37
7 Answers
Reset to default 8I had the same issue. I fixed it by reinstalling the watchman
package. If you are using mac do this brew uninstall watchman
and then brew install watchman
Maybe your 8081 port is already in use.
Try the first solution in here https://facebook.github.io/react-native/docs/troubleshooting
$ sudo lsof -i :8081
$ kill -9
After that,
$ cd YourProject
and
$ npm start
this should help you debugging the packager
echo 256 | sudo tee -a /proc/sys/fs/inotify/max_user_instances
echo 32768 | sudo tee -a /proc/sys/fs/inotify/max_queued_events
echo 65536 | sudo tee -a /proc/sys/fs/inotify/max_user_watches
YEP, THAT'S IT.
I had this issue that watchman wasn't able to create the directory in /usr/local/var/run/watchman/-state. I granted access to the parent directory (probably not needed as it likely users system access) then I manually created the directory and re-ran it.
I got the path to the missing directory from the metro terminal window.
Worked fine after that.
The latest version of React Native change the port of emulator by somehow but the older not. Anyway, please reference to this link . Then it will help you sort it out.
Cheer!
Your issue can also relate to watchman, try the following mands (I used them on linux ubuntu)
echo 256 | sudo tee -a /proc/sys/fs/inotify/max_user_instances
echo 32768 | sudo tee -a /proc/sys/fs/inotify/max_queued_events
echo 65536 | sudo tee -a /proc/sys/fs/inotify/max_user_watches
the above mands worked for me
Solution for Ubuntu found here: https://reactnativeforyou./android-emulator-stuck-at-loading-from-10-0-2-28081-react-native-issue-fix/
echo 256 | sudo tee -a /proc/sys/fs/inotify/max_user_instances
echo 32768 | sudo tee -a /proc/sys/fs/inotify/max_queued_events
echo 65536 | sudo tee -a /proc/sys/fs/inotify/max_user_watches
pkill node
本文标签: javascriptemulator stuck at loading from 100228081what is issueStack Overflow
版权声明:本文标题:javascript - emulator stuck at loading from 10.0.2.2:8081,what is issue? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743600709a2508541.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论