Android INSTALL_FAILED_UID_CHANGED

前端 未结 26 1221
走了就别回头了
走了就别回头了 2020-11-28 07:37

I have been doing debugging on Android using my Nexus 4, however I recently encountered this error here. After doing some research on this error, it seems to be an issue wit

26条回答
  •  抹茶落季
    2020-11-28 07:56

    From the ADB shell you can find solution in two ways. 1. keep the data and find the solution and 2. solution without persisting the data

    solution for 1. is to run the commandadb chown -R UID:UID /data/data/your.package.name through command prompt from ADB path.

    solution for 2. is to run the command adb rm -r /data/data/your.package.name from the same path.

提交回复
热议问题