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. 

  • Picker don't show confirmation button for Fenix8

    • Acknowledged on Jan 28, 2025
    • 0 Comments
    SDK: 7.4.3 MC Extension: 1.1.0 (updated 19/1 25) Fault: The confirmation button is not visible (or probably outside the screen) when running simulator for Fenix8. Same thing on watch. How to reproduce: Run the Picker samples with Fenix8.
    • Jan 27, 2025 12:17 PM
  • Fenix 8 bugs

    • Acknowledged on Feb 4, 2025
    • 5 Comments
    Users are reporting bugs while the app is working fine on simulator and on Fenix 7 (Current SDK: IQ 7.4.3): - app menu being very slow, sometimes unusable; - no sound - after a time, the app reacts very slowly, and after exit the watch is reacting...
    • Jan 26, 2025 12:07 PM
  • Cannot Calculate Mod (%) with Doubles

    • Acknowledged on Jan 28, 2025
    • 6 Comments
    I get an error when I try to calculate a mod with two doubles. There is no error when doing the equivalent calculation with a formula. var a = 5 as Double; // or 5d var b = 2 as Double; // or 2d var c = a % b; // ERROR: Cannot perform operation ...
    • Jan 26, 2025 6:21 AM
  • "char --" or "char -= 1" error

    • Acknowledged on Jan 28, 2025
    • 3 Comments
    I noticed recently you can increment a Char but you can't decrement a Char. var foo = 'A'; foo ++; The above is fine and `foo` is now 'B'. But in the below: var foo = 'B'; foo --; The second line fails to compile with error: Cannot perform...
    • Jan 24, 2025 12:21 PM
  • Unnecessary "Array index out of bounds" error for tuple PolyType

    • Acknowledged on Jan 28, 2025
    • 4 Comments
    I have a typedef that can be either a tuple of length 1 or a tuple of length 2: typedef ViewTuple as [WatchUi.Views] or [WatchUi.Views, WatchUi.InputDelegates]; (i.e. the return value of AppBase.getInitialView()) In my code, I have a function...
    • Jan 24, 2025 2:03 AM
  • Conditionals bug in SDK 8.0.0

    • Acknowledged on Jan 28, 2025
    • 4 Comments
    I'm seeing a new bug in SDK 8.0.0 beta with conditionals that I can't replicate in 7.4.3. In the following statement: var foo = '#' ; var bar = foo == '#' ? :hashtag : foo == ' ' ? :space : foo == ' \t ' ? :tab : :other ; I would...
    • Jan 23, 2025 9:41 PM
  • Feature request: add new compiler warning and compilation summary

    • Acknowledged on Jan 28, 2025
    • 0 Comments
    1. According to https://forums.garmin.com/developer/connect-iq/i/bug-reports/problem-with-installing-app add a compiler warning for each instance of excluding a device from the build process, along with the reason for the exclusion e.g. - "WARNING...
    • Jan 23, 2025 9:10 PM
  • Simulator: Data Fields > Activity Data dialog still allows you to press Save Fit Data without first pressing Data Field Timer Controls > Save, resulting in a corrupt FIT file

    • Acknowledged on Jan 28, 2025
    • 0 Comments
    This has been a problem since day one, and it's come up in the forums multiple times. People press Save Fit Data without first pressing Timer Controls > Save, then they wonder why they can't open their FIT file in monkeygraph (for example) In general...
    • Jan 23, 2025 7:27 PM
  • Type checker issues with aliased tuple type

    • Acknowledged on Jan 28, 2025
    • 14 Comments
    I have my own tuple type defined as: typedef MGRS as [String, String, Number, Number]; However, I am encountering a lot of pain trying to use it elsewhere in my code because the type checker does not seem to recognize it properly. When using...
    • Jan 22, 2025 5:24 PM
  • Unhelpful error message when missing an argument to new Position.Location()

    • Acknowledged on Jan 21, 2025
    • 0 Comments
    I forgot to pass :format when initializing a new Position.Location object and was greeted with this less-than-optimal stack trace: Error: System.error() Details: Illegal format Stack: - at Ideally this stack trace should be improved so the next person...
    • Jan 21, 2025 4:53 PM