Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to install a new version of the app using the same keystore thru cmd line

adb install my_app_1.2.apk

But I get an installation error Failure [INSTALL_FAILED_ALREADY_EXISTS]

Can anyone help??

share|improve this question
i dont want to uninstall the app. – light365 Oct 29 '12 at 12:32

1 Answer

If you install the application on your device via adb install you should look for the reinstall option which should be -r. So if you do adb install -r you should be able to install without uninstalling before.

share|improve this answer
2  
or just uninstall the old version of the app manually. but the above suggestion is better. – Zoltán Oct 29 '12 at 12:29
@Chirag Raval Thanks. It worked :) – light365 Oct 29 '12 at 12:35
1  
@light365 don't foget to accept my answer. – Chirag Raval Oct 29 '12 at 12:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.