How to install/replace on Android without using Eclipse

前端 未结 5 1349
野性不改
野性不改 2021-02-18 13:57

A buddy sent me a later version of an .apk file. I already had the earlier version on my device.

When I tried to adb install the file, I got this:

$ adb          


        
5条回答
  •  不知归路
    2021-02-18 14:36

    You need to supply the -r key:

    adb install -r myapp-release.apk
    

    This has been already discussed: Why does adb install fail?

提交回复
热议问题