Today, I tried to install an application from command line and I found this error:
Failure [INSTALL_FAILED_UID_CHANGED]After Googling for a while, I found the reason.
This happens when there is application data from older version is still present. To resolve this, clear/delete the following directory:
/data/data/<PACKAGE_NAME>To do this, open terminal and type the following commands:
adb shellNow try to install the application.
cd /data/data/
rm -r <PACKAGE_NAME>
exit
Viola.
![Failure [INSTALL_FAILED_UID_CHANGED] Failure [INSTALL_FAILED_UID_CHANGED]](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZljfdt966TxAPHjo_4DAq4HHsqe4z2DstzNuAHz7qUvN5N4mZPEKWPPZI8mcXngIoMtlUu15fxWLDdXCbykd9PZxvIxo_iC7QtM0GzDkJPKOaYuFQdFj35L0EW1PdNVNxV9A4QPBLgbM/s1600/Android-Blue-Water_48.jpg)
0 comments:
Post a Comment