Android adb not found

前端 未结 20 1744
半阙折子戏
半阙折子戏 2020-11-28 01:18

When I run my android app from eclipse, I get this error.

Unexpected exception \'Cannot run program \"/home/antz/Development/adt-bundle-linux/sdk/platform-t         


        
20条回答
  •  渐次进展
    2020-11-28 02:06

    You can no longer install ia32-libs, so you must the individual 32 bit libraries needed by adb

    sudo apt-get install libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5
    

    And for Ubuntu 13.10:

    sudo apt-get install libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5 lib32z1
    

提交回复
热议问题