Skip to content Skip to sidebar Skip to footer

Bing Translate Api Not Working

My app crashes as soon as this activity starts. It doesn't crash on clicking the button. The code is as follows package com.example.testing; import android.app.Activity; import an

Solution 1:

Have you added the jar file to your project?

You need to download the jar file and add it to your class path.

Follow these steps:

  1. Download the jar file to a directory: https://code.google.com/p/microsoft-translator-java-api/downloads/list
  2. In eclipse right click on your libs folder and go to Import -> General -> File System, then browse to the directory in which the jar file was downloaded and click Ok. then select from the jar file from the window in eclipse and click finish to add the jar to your project
  3. Right click on your project and go to Build Path -> Configure Build Path, then click the Libraries tab and add jar's. Navigate to the jar file in your libs folder and click done/finish/ok.

Post a Comment for "Bing Translate Api Not Working"