Complete
over 3 years ago

We are not able to debug app call stacks since they are specific to the app (unless the app is maintained by Garmin). If you have more specific information that is not due to a bug in your app code that leads to a reliably-reproducible crash, we can investigate further.

new fr devices crush in view.initialise

fr255...fr955


Error: System Error
Details: Failed invoking <symbol>
Stack:
  - initialize() at 704b03c0.mb:1886 0x30002d61
  - initialize() at PSX6_Vie.mc:292 0x10002492                               ///HERE WatchFace.initialize();
  - getInitialView() at PSX6_App.mc:247 0x100003bc

Parents
  • class ViW extends UII.WatchFace
    {

        function initialize()
        {
             WatchFace.initialize();///line 292
             ...
        }
        ...
    }

    I've commented this line and it runs - but usually is not a good practise to not call initialise inherited class.

    And I'm not sure what happen for the rest of devices.

Comment
  • class ViW extends UII.WatchFace
    {

        function initialize()
        {
             WatchFace.initialize();///line 292
             ...
        }
        ...
    }

    I've commented this line and it runs - but usually is not a good practise to not call initialise inherited class.

    And I'm not sure what happen for the rest of devices.

Children