react-native – 如何在Android手机上运行React Native应用程序

前端之家收集整理的这篇文章主要介绍了react-native – 如何在Android手机上运行React Native应用程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在构建React Native应用程序.

当我使用“react-native run-android”在Mac上的终端中启动应用程序时,它运行良好.

但当我得到apk文件并手动将其安装在另一个Android设备上时,它不起作用.

看起来像这样.

Crash on Huawei P8 lite

看起来APK中的源代码正在寻找包服务器.

阅读本文,了解如何为react-native构建APK:React-Native – Generating Signed APK

如果您的设备通过电缆连接:

  • If you’re on a physical device connected to the same machine,run ‘adb reverse tcp:8081 tcp:8081’ to forward requests from your device

否则,您仍然可以通过Wifi执行此操作,方法是按照错误中的最后一点:

  • If your device is on the same Wi-Fi network,set ‘Debug server host & port for device’ in ‘Dev settings’ to your machine’s IP address and the port of the local dev server -e.g. 10.0.1.1:8081
原文链接:https://www.f2er.com/react/300711.html

猜你在找的React相关文章