Kannada Language not supported

Please provide the following:

  1. SDK Version: 48.0.15
  2. Platforms(Android/iOS/web/all): iOS
  3. Add the appropriate “Tag” based on what Expo library you have a question on.

I have an app that is translated into English, Kannada, and Hindi. When using the Kannada language, the audio simply reads out the following string: “.,…tss24.tss8,.”, like “dot comma dot dot tss24…”. Is Kannada simply not supported? My code is below. I just tested on Android and it actually works. Seems to just be an iOS issue.

    function speakOrPause() {
        if (playingAudio) {
            Speech.stop()
            setPlayingAudio(false)
        }
        else {
            setPlayingAudio(true)
            Speech.speak(resource[selectedSettingsLanguage].articleTitle, { language: selectedSettingsLanguage })
            Speech.speak(resource[selectedSettingsLanguage].articleText, { language: selectedSettingsLanguage })
        }
    }

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.