Error during Sync: Broken pipe - after update Android Studio 3.2, 3.3

前端 未结 1 347
走了就别回头了
走了就别回头了 2021-01-07 15:32

After update Android Studio to 3.2 and solve problem with sync gradle Gradle sync failed - after update Android Studio to 3.2 - i cant install apk -

Event Log:

1条回答
  •  被撕碎了的回忆
    2021-01-07 16:00

    I resolved this problem - in my case I found in Activity Monitor on my Mac several processes of adb and kill force all processes until stayed 1 adb processe and it helped.

    EDIT: try in terminal comands :

    adb kill server
    adb start server
    

    It help to restart your adb, I have to do it all the time on Android Studio =(

    EDIT-2: also magic way to fix:

    adb install -r -t apk_debug.apk
    

    And then just "Run app" from android studio

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