• REVIEW_REQUEST_STATUS_DENIED

    I am trying to implement WatchUi.makeReviewTokenRequest(). Everything seems to be working, but after I rejected the review once on the watch, I am no longer able to request review. I always get ReviewRequestStatus "REVIEW_REQUEST_STATUS_DENIED". And even…

  • Console Not Reporting?

    This is strange. I had to reinstall Eclipse. I get compiler output just like normal.

    But my print statements, and even run time errors don't show up at all. I installed Eclipse again just to be sure. Same. I can't find a setting that would prevent these…

  • RE: drawArc based on a percentage

    Sorry but I really don't understand...

    The arc is based on this:

        0 degrees: 3 o'clock position.
    
        90 degrees: 12 o'clock position.
    
        180 degrees: 9 o'clock position.
    
        270 degrees: 6 o'clock position.

    Or at least…

  • Play two AnimationLayers at the same time

    It appears as though there is a limit to the number of active animation layers, I currently have two loaded that are supposed to be played in parallel but only the second ever moves. I have looked at the animation sample app and that only ever animates…

  • Symbol not found with new SDK

    Hi

    I recently updated my datafield to the new sdk 4.2.3 and now 4.2.4 (from 4.1.2).

    I got a compilation error in this line:

    if(info has :distanceToDestination && info.distanceToDestination != null) {

    It seems the new SDK does not have the "…

  • Activity.getActivityInfo().elapsedDistance gets stucked on Simulator Edge Devices

    Since ConnectIQ 4.2.* elapsedDistances gets stucked on Simulator for Edge Devices, at least for datafields.

        function compute(info) {
       		System.println(info.elapsedDistance + " "+ Act.getActivityInfo().elapsedDistance);
       		return;
       	}…

  • RE: How can I find out the number of colors a device supports?

    What you did doesn't seem too hard.

    If one is coming from a more modern/capable environment (like C#), there is code out there to do almost anything and there's not much cost adding it to your product.

    It does seem we won't see new 14 color ones…

  • RE: Watchdog time limit knowable?

    <facepalm> After some experimenting with both the simulator and a real device I've determined that the limit has nothing to do with time, and that the limits for the sim and hardware are much different. For the Forerunner 235 if I go past 100 ms I risk…

  • RE: Thoughts on System 6 onPress() for watch faces

    unfortunatelly we don't have access to the buttons since they are used for shortcut etc.

    lol why always comparing Apple and Garmin, they are not same things at all,

    it is like you are comparing Aircraft and Helicopters, they are both great but in…

  • RE: BufferedBitmap on renders completely black on glance view

    1) It looks like this:

    (Still a WIP)

    2) I am fetching data in the background every 10 seconds.Whenever a new set arrives, I invalidate the bufferedimage. On the next onUpdate(), if there's no stored bufferedimage, I create a new one and store it. I then…