Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed to parse the output of 'adb version'

I'm using Ubuntu 11.10 and Eclipse for android developing. I've already made a new project, but it contains error:

Failed to parse the output of 'adb version'

I will be thankful if anyone have an idea how can I fix that?

like image 438
user1085549 Avatar asked Dec 07 '11 12:12

user1085549


2 Answers

  1. Install Oracle JRE using PPA:

    sudo add-apt-repository ppa:ferramroberto/java
    sudo apt-get update
    sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts
    
  2. Install ia32-libs from software center.

like image 139
madan ram Avatar answered Sep 19 '22 01:09

madan ram


Two options to solve this problem on windows: Option 1:

  1. Close the eclipse, if it is running.
  2. Run the command prompt.
  3. Go to the tools location of the android sdk.
  4. run 'adb kill-server'
  5. then run 'adb start-server'.
  6. start the eclipse.

Option 2:

  1. Open the task manager.
  2. kill the adb process.
  3. start the eclipse.

Problem should be solved.

like image 23
user493244 Avatar answered Sep 22 '22 01:09

user493244