7

Rubymotion 中,我们从终端开始rake

Ankits-MacBook-Pro:Magic ankitgupta$ rake 
     Build ./build/iPhoneSimulator-6.0-Development
  Simulate ./build/iPhoneSimulator-6.0-Development/Magic.app
(main)>

默认情况下它正在启动iPhoneSimulator-6.0-Development。我该如何开始iPhone 5.15.0 Simulator

4

2 回答 2

13

您应该能够通过 rake 命令设置目标,例如:

$ rake target=5.1 # => iOS 5.1

在此拉取请求中注明:https ://github.com/HipByte/RubyMotion/pull/10

于 2012-12-15T21:24:40.520 回答
2

要更改目标设备和操作系统,请尝试以下操作:

bundle exec rake target=8.4 device_name="iPad 2"
于 2015-11-27T07:25:43.950 回答