heremaps / here-android-sdk-examples

Java-based projects using the HERE SDK for Android.
Apache License 2.0
145 stars 191 forks source link

Voice navigation issue #433

Open melvinpmauricio opened 3 years ago

melvinpmauricio commented 3 years ago

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.

NazarKacharaba commented 3 years ago

Hi @melvinpmauricio Please contact support@here.com for this case.