Android adb not found

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

    On Linux, Android SDK platform-tools package containing adb used to be 32bit. It worked fine on 32bit systems. But on 64bit systems you need to manually install the IA32 library.

    For Debian based distributions try this:

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

    But since v24.0 platform-tools contains only 64bit binaries - so 32bit libraries no longer required.

提交回复
热议问题