Skip to content Skip to sidebar Skip to footer

Microsoft Translate Api For Android Gives Unknownhostexception

I have tried the following code to implement a translator app using Microsoft Translator API library found here. I have a working internet connection and I have generated the a val

Solution 1:

I also had this same issue using this api ,it worked after changing the line

translatedText = Translate.execute(word, Language.ENGLISH, Language.GERMAN); to

translatedText = Translate.execute(word, Language.GERMAN);

Post a Comment for "Microsoft Translate Api For Android Gives Unknownhostexception"