我正在像iOS一样运行iOS的React Native项目
react-native run-ios --simulator="iPhone 8"
因此它会自动运行特定的模拟器。
有什么办法可以在Android上做同样的事情吗?
答案 0 :(得分:-1)
您要在其中运行应用程序的第一个启动模拟器。使用终端,您可以通过以下命令启动:
emulator -avd [avd-name]
然后只需运行react-native run-android --emulator="AVD-NAME"
命令。