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 know that adb install will not replace an existing package if it's of a different build type (i.e. debug vs. release).

Eclipse also successfully replaces the debug apks whenever I run a debug session.

But when I attempt adb install for replacing an existing release apk with another release apk (same package name!), I get a failure message:

adb install myapp-release.apk 
    pkg: /data/local/tmp/myapp-release.apk
Failure [INSTALL_FAILED_ALREADY_EXISTS]
745 KB/s (34310 bytes in 0.044s)

Wasn't that supposed to work? What am I missing?

share|improve this question

1 Answer

up vote 28 down vote accepted

I suppose if the app is already installed, you need to supply the -r key:

adb install -r myapp-release.apk

From the adb help:

'-r' means reinstall the app, keeping its data
share|improve this answer
Thank you. I can't believe I missed something so obvious. +1 and and accepting. – an00b Jan 29 '12 at 14:16
7  
Note that you can use the -r flag even if the package doesn't exist, so you may as well always use it unless you don't want to override an existing apk. – David Caunt Jan 29 '12 at 14:32
@David Caunt Thanks for this tip. – an00b Jan 29 '12 at 14:37

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.