在EXPO中进行调试:物理设备

时间:2020-04-23 16:28:33

标签: react-native debugging expo reactotron

我想调试Expo中的网络请求。 我正在使用Reactotron:它可以在ios模拟器上运行,但在物理设备上却什么也没有: 我在Android和隧道EXPO连接上使用EXPO。

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

import Reactotron from 'reactotron-react-native'

Reactotron
  .setAsyncStorageHandler(AsyncStorage) // AsyncStorage would either come from `react-native` or `@react-native-community/async-storage` depending on where you get it from
  .configure() // controls connection & communication settings
  .useReactNative() // add all built-in react native plugins
  .connect() // let's connect!

export default function App(props) {
  const [isLoadingComplete, setLoadingComplete] = useState(false);


  useEffect(() => {
    Reactotron.connect()
  });
... 

我需要更改什么才能在物理设备上调试请求?

0 个答案:

没有答案