React Native没有连接到VS Code Debugger

时间:2019-04-04 17:41:24

标签: android react-native visual-studio-code

我创建了一个新的React Native项目-使用react-native init myproject,现在尝试在Visual Studio Code中debug进行开发。当我单击Debug Android时,我在Android仿真器中收到一条错误消息,告知它无法连接到远程调试器-如下所示: enter image description here

在“调试”屏幕中,我向launch.json中添加了必要的配置设置-参见下文。 enter image description here

要在VS Code中调试React Native应用程序,我还需要做些什么?

2 个答案:

答案 0 :(得分:0)

我使用adb reverse tcp:8081 tcp:8081解决了这个问题,然后使用react-native run android

重新加载或重建了模拟器

答案 1 :(得分:0)

尝试: 1.禁用Debug Android 2.运行adb reverse tcp:8081 tcp:8081 3.关闭Chrome Debug remote 4.停止并再次运行react-native start --reset-cache,重新加载您的应用并等待应用启动,然后再尝试Debug Android

它总是和我一起工作