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. 

  • Missing m4b format

    • Acknowledged on
    • 0 Comments
    Audiobook/podcast files playback should be supported (based on https://support.garmin.com/en-US/?faq=kAQRzhwL754A1POp3f9dG7 ). But this format is missing in the API (enum Toybox.Media.ENCODING_......): https://developer.garmin.com/connect-iq/api-docs...
  • Bluetooth Low Energy - sometimes communication does not work when Edge 830 is connected to smartphone

    Former Member
    Former Member
    • Acknowledged on
    • 0 Comments
    Hi everyone, I'm currently developing an app for Garmin Edge 830 using Bluetooth to read some data from a e-Bike sensor (developed by me and my Team and used regularly with other displays and every smartphone). My app is nearly finished and with the...
  • RFC: Allow (:test) annotation in a Barrel to exist without (:release) and (:debug) annotation

    • Acknowledged on
    • 0 Comments
    module Barrel { (:test) module TestingModule { function foo() { // code here } } } This currently doesn't work like one expects: The annotation (:test) is defined for Barrel.TestingModule but is not indicated as a supported annotation...
  • Language feature: Null coalescing operator and optional chaining

    • Acknowledged on
    • 2 Comments
    Working with nulls is pretty painful at the moment, it's probably because I have monkeyC.typeCheckLevel as Strict. Two problems arises. 1. Problem: Optional chaining Suppose I have variable `bitmap` with type ` BufferedBitmapReference? ` then handling...
  • Bug-Report: Sailing and Boating has no speed tracking in map

    • Acknowledged on
    • 3 Comments
    When I record an activity as "biking", I can see in the map-view the speed (as a color) I had at specific location. This does not work when I record an activity as "boating". Especially for races, this would be very important to know (find areas with...
  • Bug: Barrel with several annotations cannot have tests

    • Acknowledged on
    • 1 Comment
    Have barrel which has two files: // source/FooConversionWeight.mc module Foo { (:weight) module Conversion { module Weight { function toLbs(kg) as Double { return kg.toDouble() * 2.2046226218488d; } } } } // source/FooConversionDistance...
  • CIQ widgets cannot be installed on Edge 1040

    • Acknowledged on
    • 14 Comments
    With Garmin Connect IQ Store (tested with version 2.16.0 Android and iOS) it is not possible to install applications of type "Device App" from the store that were created from a widget (using type="widget" in manifest.xml). In the Edge 1040 simulator...
  • Bug: Barrels with multiple annotations on a module don't work

    • Acknowledged on
    • 0 Comments
    Have a barrel with the following module in source/FooConversion.mc module Foo { (:all :temp :dist) module Conversion { (:all :temp) module Temperature { function toFahrenheit(temp) { return toF(temp); } function toF(temp) { return...
  • Incorrect "maybe uninitialized" error

    • Acknowledged on
    • 4 Comments
    Given this code: var x; try { x = 1; throw new Exception(); } catch (ex) { x++; } I get: ERROR: <device>: bug.mc:6: Value may not be initialized. ERROR: < device> : bug.mc:6: Cannot perform operation 'add' on types 'Uninitialized'...
  • RFC: Run all tests from one file

    • Ticket Created on
    • 0 Comments
    Currently monkeydo /path/to/prg device -t allows a specific test, eg TestModule.testName It would be beneficial to test a complete testmodule, eg: monkeydo /path/to/prg device -t TestModule This would test all the tests in that module. Right now...