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. 

  • Forerunner 965 crash when recording CIQ activities

    • Acknowledged on
    • 4 Comments
    Hello, I'm CIQ developer for racket sports ( https://apps.garmin.com/developer/6a6d6521-4f13-470f-aa51-bc8d4ad0886b/apps ). One of the user reported to me that recently the CIQ activities are crashing in the middle of the training. I know this issue comes...
  • Device reference page is missing

    • Acknowledged on
    • 5 Comments
    This URL has stopped working: https://developer.garmin.com/connect-iq/reference-guides/devices-reference/
  • Venu X1 SImulator vector font does not match actual device

    • Acknowledged on
    • 1 Comment
    For vector fonts, the sim is returning RobotoRegular instead of RobotoCondensedBold or RobotCondensedRegular as is the case on a real device. The following returns null on the sim (but not on the device): Graphics.getVectorFont({:face => ["RobotoCondensedBold...
  • Bad accelerometer data captured by FR55 after latest update

    • Acknowledged on
    • 9 Comments
    I develop CIQ apps for tracking racket sports ( https://apps.garmin.com/developer/6a6d6521-4f13-470f-aa51-bc8d4ad0886b/apps ) . Core functionality of my apps is capturing and recognizing strokes based on accelerometer signal. Recently I got couple of...
  • Fenix 8 BLE Fail

    • Acknowledged on
    • 0 Comments
    On the Fenix ​​8, with SDK 8.x.x, the "service.getCharacteristic" function fails on the real device generating an IQ error but works perfectly in the emulator
  • Brings up your badges instead of your friends.

    • Acknowledged on
    • 1 Comment
    When you're looking at a friend's new run and Garmin connect, and they earned a new badge when you click on "see all" badges it brings up your Badgers not your friends badges.
  • feature request: “Movement-Based Alarm” / Movement to Dismiss

    • Acknowledged on
    • 0 Comments
    Dear Garmin Team, I would like to propose a feature idea for your smart and fitness watches that could be highly beneficial for many users in their daily routines: An extension of the alarm function with a “Movement to Dismiss” option. Specifically...
  • Scope error with SDK 8.2.1 but not in 8.1.1

    • Acknowledged on
    • 2 Comments
    I have the following (simplified) code that compiled without issues in SDK 8.1.1, but now fails in SDK 8.2.1 with the error: "Value 'JQ' not available in all function scopes." A similar error also occurs when calling another member function of the same...
  • BluetoothLowEnergy.registerProfile(...) crashes simulator under Linux when nRF52840 dongle isn't present

    • Acknowledged on
    • 1 Comment
    Under Linux, if you attempt to call BluetoothLowEnergy.registerProfile when the nRF52840 dongle isn't connected, the simulator crashes with no explanation. Now obviously without the dongle connected you're not going to be doing any useful BLE development...
  • Make type checker aware of constants inlining and static branches elimination optimizations

    • Acknowledged on
    • 6 Comments
    The following code can't be built in debug mode with "-l 3 -O 3": import Toybox.Lang; (:release) const CALL_G = true; (:debug) const CALL_G = false; function f() as Number { if (CALL_G) { return g(); // Undefined symbol ':g' detected...