Skip to content Skip to sidebar Skip to footer

"eocd Not Found" With Adb Install

When an Android project exceeds about 2MB, I keep getting 'EOCD not found, not zip' when trying to install the signed application on a device using adb install. This problem is lim

Solution 1:

This problem does not seem to be related to size IMO. As in my current project, the APK has size more than 9 MB. I had a similar problem and was getting almost similar logs as below in eclipse console

[2011-12-06 10:35:38 - MyProject] Failed to install MyProject.apk on device 
[2011-12-06 10:35:38 - MyProject] (null)
[2011-12-06 10:35:38 - MyProject] Launch canceled!

and on window's command console I was getting EOCD not found, not Zip message while installing the same APK (build using eclipse). But cleaning and rebuilding the project solved the problem.

In my case, I had had deleted some back up (non-java) files from src directory, which eclipse did not know.

Post a Comment for ""eocd Not Found" With Adb Install"