React native expo中的调试:物理设备

React native expo中的调试:物理设备,react-native,debugging,expo,reactotron,React Native,Debugging,Expo,Reactotron,我想在Expo中调试我的网络请求。 我使用的是Reactotron:它在我的ios模拟器上工作,但在我的物理设备上什么都没有: 我在安卓上使用expo和隧道expo连接 这是我的App.js中的配置: 从“Reactotron react native”导入Reactotron 反应管 .setAsyncStorageHandler(AsyncStorage)//AsyncStorage可能来自“react-native”或“react-native community/async-storag

我想在Expo中调试我的网络请求。 我使用的是Reactotron:它在我的ios模拟器上工作,但在我的物理设备上什么都没有: 我在安卓上使用expo和隧道expo连接

这是我的
App.js
中的配置:

从“Reactotron react native”导入Reactotron
反应管
.setAsyncStorageHandler(AsyncStorage)//AsyncStorage可能来自“react-native”或“react-native community/async-storage”,具体取决于您从何处获得它
.configure()//控制连接和通信设置
.useReactNative()//添加所有内置的react本机插件
.connect()//让我们连接!
导出默认功能应用程序(道具){
const[isLoadingComplete,setLoadingComplete]=useState(false);
useffect(()=>{
Reactotron.connect()
});
... 
在物理设备上调试请求需要更改什么