Cannot instantiate RunningDynamics on 735xt (can in simulator).

Hi,

I'm trying to debug a change in line with a thread with Travis. Essentially, I want an instance of RunningDynamics without a listener.

Here's my code (snipped for clarity):

function initialize() {
    DataField.initialize();
	if(self has :getDynamics) {	getDynamics();	}
	////// etc.
	// Snipped for clarity
}
// Later...
(:runningdynamics) function getDynamics() {
	if(AntPlus has :RunningDynamics) {
		dynamics = new AntPlus.RunningDynamics(null);
	}
}

Running with a debugger sideload, I am seeing the following error trace:

ERROR: Invalid Value
DETAILS: Failed invoking <symbol>
STORE_ID: 00000000000000000000000000000000
CALLSTACK:
	@PC = 0x30002f0f
	@PC = 0x30002fff
  [SNIP].mc (getDynamics:61)
  [SNIP].mc (initialize:209)
  [SNIP].mc (getInitialView:19)

Line 61 is my "dynamics = new AntPlus.RunningDynamics(null);" line and the lack of info about the next two entries suggests it is part of the compiled RunningDynamics classes.

So basically, the initialize call that is recommended by Travis simply fails in a line of code belonging to RunningDynamics.

My 735xt should be able to use RunningDynamics as it is on latest firmware and the docs say Since: 2.4.0 and so on.

I have tried this both with and without the ANT permission in manifest.

Any ideas?

G