Android adb not found

前端 未结 20 1532
半阙折子戏
半阙折子戏 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:51

    Install these libraries in linux apt-get install ia32-libs

    0 讨论(0)
  • 2020-11-28 01:54

    On Arch linux:

    Enable the "multiarch" repositories in /etc/pacman.conf

    then run:

    root@box#pacman -Syu
    
    root@box#pacman -S lib32-glibc lib32-zlib lib32-libstdc++5 lib32-ncurses lib32-gcc-libs
    
    0 讨论(0)
  • 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.

    0 讨论(0)
  • 2020-11-28 01:55

    http://abhinavasblog.blogspot.sg/2013/10/working-with-ubuntu-1304-and-1310-java.html

    the blog explain resolution to Ubuntu 13.10 for installing Chrome, Java and Fixing Android SDK.

    0 讨论(0)
  • 2020-11-28 01:56

    For multiarch Debian 7.0, add:

    dpkg --add-architecture i386
    apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
    
    0 讨论(0)
  • 2020-11-28 01:56

    You need to install the ia32-libs (IA32 libraries) package for this to work.

    0 讨论(0)
提交回复
热议问题