Complete
over 3 years ago

This issue has been addressed and fixed.  The fix will be available in the next public Android GCM release (4.37).

Mobile SDK not working after latest Garmin Connect Android app update

Hi, reportedly with latest Garmin Connect update, Mobile SDK on Android is broken.

- It is unable to open the app with openApplication method

- it gets all the time app status UNKNOWN

- is unable to open CIQ app store page

- seems like no message can go through from Garmin to Android.. 

If confirmed, please share more details about it and expected resolution time-frame. 

Thanks

Parents
  • For those wondering about a workaround, this simplified approach seems to work as suggested by 6023229:

    IQApp app = new IQApp(APP_ID);
    listenForAppEvents(app, device);

    instead of

    mConnectIQ.getApplicationInfo(APP_ID, device, new ConnectIQ.IQApplicationInfoListener() {
    @Override
    public void onApplicationInfoReceived( IQApp app ) {
    listenForAppEvents(app, device);
    }
    });

Comment
  • For those wondering about a workaround, this simplified approach seems to work as suggested by 6023229:

    IQApp app = new IQApp(APP_ID);
    listenForAppEvents(app, device);

    instead of

    mConnectIQ.getApplicationInfo(APP_ID, device, new ConnectIQ.IQApplicationInfoListener() {
    @Override
    public void onApplicationInfoReceived( IQApp app ) {
    listenForAppEvents(app, device);
    }
    });

Children
No Data