here-android-sdk-examples icon indicating copy to clipboard operation
here-android-sdk-examples copied to clipboard

Voice navigation issue

Open melvinpmauricio opened this issue 3 years ago • 1 comments

I follow the step by step guide in implementing voice navigation here : https://github.com/heremaps/here-android-sdk-examples/tree/master/voice-navigation. Unfortunately, when I try to download voices using this code, the VoiceCatalog.Error always returns VoiceCatalog.Error.UNKNOWN:

voiceCatalog.downloadCatalog(new VoiceCatalog.OnDownloadDoneListener() {
                @Override public void onDownloadDone(VoiceCatalog.Error error) {
                    m_progressBar.setVisibility(View.GONE);
                    if (error == VoiceCatalog.Error.NONE) { // **I got VoiceCatalog.Error.UNKNOWN here**
                        refreshVoicePackageList();
                    } 
                }
            });

Do I need to do something else? Thank you.

melvinpmauricio avatar Mar 11 '21 16:03 melvinpmauricio

Hi @melvinpmauricio Please contact [email protected] for this case.

NazarKacharaba avatar Jul 07 '21 09:07 NazarKacharaba