adb server version doesn't match this client

后端 未结 30 2468
隐瞒了意图╮
隐瞒了意图╮ 2020-11-22 09:49

Whenever I try to run adb devices:

            $ adb devices
            * daemon not running. starting it now *
            * daemon started su         


        
30条回答
  •  心在旅途
    2020-11-22 10:37

    OS: Ubuntu

    There are more than 1 adb are running. Check the current adb:

        which adb
        Expected Output : ANDROID_SDK/platform-tools/adb
    

    Normally the result will be:

        /usr/bin/adb
    

    Delete this older version by:

        cd /urs/bin
        sudo rm adb
    

提交回复
热议问题