Not Able To Debug App In Android Studio

前端 未结 30 2600
小蘑菇
小蘑菇 2020-12-01 02:30

I am making an app in Android Studio, now trying to debug it through adb. When I click on the word Android and the logo on the bottom bar, logcat comes up and recognizes my

30条回答
  •  春和景丽
    2020-12-01 03:03

    I tested all ways and non of them worked !!!

    finally had to change the adb port and it worked. first kill adb server like below:

    adb kill-server
    

    then restart it using another port

    adb -P 5038 start-server
    

提交回复
热议问题