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. 

  • bug: makeWebRequest sends Chars as bytes(numeric) on real device

    • Acknowledged on
    • 0 Comments
    When I use Chars as keys or values of the params dictionary: var params = { 'a' => 1, 'b' => 'foo', "bar" => 'c' }; var options = { :method => Communications.HTTP_REQUEST_METHOD_GET }; Communications.makeWebRequest(url, params, options,...
  • Feature request: Microphone support in the SDK

    • Acknowledged on
    • 5 Comments
    It would enable unique use cases to be able to access the microphone on the Venu 2 Plus from the ConnectIQ SDK.
  • GPS broken in fenix 6 widgets

    • Acknowledged on
    • 4 Comments
    I've had several fenix 6X users tell me they don't get a GPS fix when trying use Connect IQ widgets. The most detailed comment said things used to work but no longer do - with no change to the installed widget it happens in widgets written by...
  • Bug while editing work out sets

    • Acknowledged on
    • 0 Comments
    When I try to edit an exercise in a work out in the Garmin connect mobile app, the exercise i try to edit doesn’t edit but instead another exercise/set is edited. Also, sometimes instead of editing the exercise it deletes a another random exercise/set...
  • Gym workouts more streamlined suggestion and bug report

    • Acknowledged on
    • 1 Comment
    When going to the gym for a workout and choosing “free”, you should be able to select what exercise you do at the gym instead of just the reps and the weight. Perhaps you can favourite some exercises to make the list smaller. This way, it’ll make it less...
  • Training Status Widget - Crashing Out

    • Acknowledged on
    • 2 Comments
    When I click on the training status widget on Garmin Connect it is crashing out either back to the my day interface or crashing out of the app altogether.
  • Running Power still Broken

    • Acknowledged on
    • 7 Comments
    Garmin introduced major new firmware for the Forerunner 955. Ver 14.15. One fix was Running Power Graph. But a MAJOR bug still exists. CIQ reports NULL for Current.Power , while CIQ does report Average.Power correctly, for running activities. Too...
  • Strength activity

    • Acknowledged on
    • 1 Comment
    When editing ‘strength’ Activity workouts on the Connect app due to exercises being incorrect, after doing this on a few of the sets, this seems to then start editing incorrectly and updating sets that have already been completed and mixes up the order...
  • bug: compiler thinks all functions are background if one function in the class is annotated as such

    • Acknowledged on
    • 3 Comments
    SDK 4.1.7 import Toybox.Application; (:background) const VER = "0.1"; (:foreground) function set(key as PropertyKeyType, val as PropertyValueType) as Void { Application.Properties.setValue(key, val); } class Foo { (:foreground) public...
  • bug: overridden functions are exported to the background app even though they are not annotated with (:background)

    • Acknowledged on
    • 2 Comments
    When I have: (:foreground_only) // the point is that there isn't annotation or there is, but no :background annotation function onStart(state as Dictionary?) as Void log("onStart); } according to the documentation: :background Denotes code blocks available...