I am using react-native version .28 and created a project which works fine.
I can run it through two ways either from xcode and other from command: react-native run-ios
But I do not want to use Xcode, I only want to use the command, but through command, I can chose only a default device: Iphone 6(9.2)
How can I change the device?
react-native run-ios --simulator="iPhone 5s"if you want to run on iPhone 6 you typereact-native run-ios --simulator="iPhone 6"