Android adb not found

前端 未结 20 1806
半阙折子戏
半阙折子戏 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 01:55

    I'm using Ubuntu 14.04 LTS 64-bit and the following code works for me;

    sudo apt-get install lib32z1 lib32z1-dev
    sudo apt-get install lib32stdc++6
    


    Summary:

    After I tried apt-get install ia32-libs, but apt package tool suggest that;

    Package ia32-libs is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or is only available from another source.
    
    However the following packages replace it:
      lib32z1 lib32ncurses5 lib32bz2-1.0
    

    Then the above code works for me.

提交回复
热议问题