Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I used to be able to do adb install test.apk from the consol (or even eclipse) with no issues. I rooted my phone yesterday and then I started getting the following error

Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]

After a lot of trial and error, I found out that the error behind it is that it says "couldn't rename /data/app/test-1.apk

So I went to that folder and indeed there was a file called test-1.apk. I deleted it and I was able to execute adb install successfully. However, I have to do the same procedure everytime I run adb install (delete the apk file)

I am suspecting that it is permission thingy that adb is not able to rename test-1.apk or remove it due to permission. How can I fix that?

Or if you have another suggestion all togther, please help

share|improve this question
Is is this on device or emulator? – Morrison Chang Nov 18 '12 at 18:25
What happens if you do an adb uninstall <packagename> first? – DrC Nov 18 '12 at 18:25
It is a real device – Snake Nov 18 '12 at 18:42
adb uninstall test.apk does not execute. It just shows "Failure" – Snake Nov 18 '12 at 18:45
Check your rooting guide / forum / ... you used for infos about permission problems. Maybe you forgot some step. – zapl Nov 18 '12 at 18:47
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.