This space is specifically for Connect IQ bug reports. Please review the Connect IQ Bug Reports FAQ before reporting a bug to be sure you have the information needed for Garmin to investigate the bug you wish to report. 

  • Connect IQ Settings don't match installed app version

    • Acknowledged on
    • 2 Comments
    For some reason the App Settings displayed is not that of the corresponding installed App version And the App version installed does not correspond to the App version displayed by Connect IQ [which already is not the latest] Running the update may...
  • Phantom heart rate

    • Acknowledged on
    • 0 Comments
    When I remove my Garmin forerunner 735xt it still reads a heart rate for about 2 more minutes while the watch is not anywhere near any of my skin. Aka a phantom reading where it's creating readings out of thin air. This annoys me because it somewhat...
  • Button simulation got broken for some devices on 4.1.6 sdk

    • Acknowledged on
    • 2 Comments
    Looks like button simulation is broken for some devices I'm building same app on 4.1.6 sdk and launching on simulator - for fenix 5s plus buttons presses are not intercepted - for venu 2 button presses are intercepted. When the same code is launched on...
  • Fix Dexcom blood glucose data field alignment

    • Acknowledged on
    • 1 Comment
    Recently the displayed value of the Dexcom data field is offset to either the right or the left so it is impossible to see all the digits.
  • Unused new expressions are discarded

    • Ticket Created on
    • 3 Comments
    Given: var wasCalled as Boolean = false; class C { function initialize(logger as Logger) { logger.debug("This should appear"); wasCalled = true; } } (:test) function test(logger as Logger) as Boolean { new C(logger); return wasCalled;...
  • Sdk 4.1.6 can't lookup static methods from within the class

    • Acknowledged on
    • 4 Comments
    Given: module Statics { var ok as Boolean = false; class C { function initialize() { C.foo(); } static function bar() as Void { C.foo(); } private static function foo() as Void { ok = true; } } (:test) function static_from_initialize...
  • Garmin bike chalenges and virtual Zwift ride

    • Acknowledged on
    • 0 Comments
    Anyone know why I can't finish bike chalenge for badge with virtual Zwift ride? Why only real ride is supported?
  • System.getClockTime() .dst extension is not returning a correct value

    • Acknowledged on
    • 7 Comments
    Hello, System.getClockTime().dst only returns the value 0.
  • bug: compiler 4.1.6 included broken parts of the 4.2.0 Beta 1 with -l 3

    • Acknowledged on
    • 17 Comments
    I just found that sdk 4.1.6 included parts of 4.2.0 Beta 1 that other bugreports reported recently as breaking some apps. More interestingly this inclusion wasn't mentioned in the announcment on 4.1.6. See: https://forums.garmin.com/developer/connect...
  • SDK 4.1.6 broke some apps without (:base)

    • Acknowledged on
    • 1 Comment
    The following snippets are from my datafield. It compiles for instinct (or other black&white devices) using SDK 4.1.5 but fails to compile using SDK 4.1.6. //monkey.jungle: project.manifest = manifest.xml base.sourcePath = source base.resourcePath...