Test if running on simulator

Is there any way from monkeyc to test if the program is running on the simulator or on real hardware so I can initialize some data differently?

Thanks,

Dave.
  • no, :test is only kept when running tests

  • Okay but you could still use :debug and :release if you only deploy the release version to devices.

  • And that's what most of us use, but it's not 100% 

    It's good for not releasing accidentally some thing not meant for release.

    But sometimes you do want (or need to) run release build in the simulator. Although in most of those cases you probably would want to run release (non-emulator) code anyways (i.e DataField on old device with not enough memory or trying to recreate a crash from ERA)

  • Then you could set a storage value in debug mode. Which in theory only gets set in Simulator.   Then if you subsequently run release in Simulator it can work in same manner.  Like you say depends on needs. You just need a system works for 99% of time, and can be quickly tweaked for those 1% or less of cases.

  • For now this is good enough and 'simulator' code will never endup with end users. This way I can overrule the onpress functionallity with an extra setting to cycle through test situations.