Reputation: 917
I have installed my app in my device.Now due to some reasons I have exported my code and debug.keystore to another machine.When I rebuild the app It is saying "Re-installation failed due to different application signatures." Actully I want to update the app without uninstall. How can I do this?
Thanks,Chaitanya
Upvotes: 3
Views: 3428
Reputation: 3841
You can copy the previous debug.keystore from your old machine and place it in your different machine.
The location of debug.keystore
is typically your .android
directory present inside home directory.
In Windows, "My Documents" is your home directory and in Linux the default directory to which you new shell opens to is your home directory.
Upvotes: 4
Reputation: 229
Yes you only need to change the debug keystore of new machine with the one from old machine because when you run the app from compiler its debuged from the debug.keystore from .android folder and then is installed to device/emulator
Upvotes: 1