Reputation: 23
I've looked as far as I can here and haven't found a solution that works for me. I've been developing an app using Eclipse and installing the debug version to my device for testing and everything has been working fine. Recently I started working on my laptop, again in Eclipse, and I set my workspace to a network share on the original computer. Everything still worked fine with the emulator but now when I try and install the apk it just says "Application not installed". I'm thinking it has something to do with a certificate but I'm not very knowledgeable in such things. Any help would be great!
Upvotes: 2
Views: 79
Reputation: 126485
If your new .apk
is signed with a new Keystore
and you have installed the same app signed with a different Keystore
you will get this problem, just delete the installed app and try to install again.
To locate the default keystore path, in Windows:
/Users/<username>/.android/debug.keystore.
Copy that keystore file and replace it into your laptop´s kestore.
Upvotes: 1