appears after running react-native run-android
I click the reload JS button and it changes to
Which is more informative, I am using VS standalone Android Emulator, and have already ran adb reverse etc etc
I do not see an option for Debug server host & port for device in Dev settings like it says there should be.
答案 0 :(得分:1)
如果您未设置服务器IP(应与手机位于同一本地网络上),则会发生这种情况。
根据您的问题,我假设您可以使用adb
连接到模拟器,然后您应该能够根据G. Hamaide指出的official guide使用以下命令向其发送命令:
adb shell input keyevent 82
这应该将打开菜单事件发送到模拟器并显示您将找到Dev Settings
的菜单,如果您在那里打开它,您会发现Debug Server host & port
。
要连接到此服务器,您必须位于同一本地网络上(即连接到同一路由器)。我假设您在Windows计算机上使用默认选项,因此请打开cmd shell并使用ipconfig
了解本地IP地址。您现在可以将主机和端口设置为YOUR_LOCAL_IP:8081(默认端口为8081)。尝试重新加载它现在应该工作。
答案 1 :(得分:-1)
您需要按照official guide。
中的步骤操作从您所处的位置开始,请按照以下步骤操作: