The same problem may occur if you install the application a while ago, and now you are trying to install it from another PC or to some other computer.
Although you did not install the system before installing a new application, the system supports some data related to the application. To overcome this, completely remove the application using the abd command.
adb uninstall my.package.id
Please refer to another root cause for the same problem . It helped me a lot, spending 5 hours of my time.
Eclipse simply says that “Installation Error: Unknown failure”, it does not provide information about the reason for the failure in the console window
To find out what the error message is, install apk with adb command
> adb install app.apk
Then we can see the error message as "Failed to install app.apk: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: package com.myapp.id does not match the previously installed version, ignoring!]"
This helps to understand the problem.
Naresh
source share