I had the same problem. I realized that this is because I used JDK 1.7. Although the jars created with 1.6 work at 1.7, the proguard for 1.6 jars does not work with 1.7 jars. Currently, only Proguard beta versions for 1.7 are available. So, android tools and maven repositories have proguard for 1.6 jars. When he tries to cut 1.7 jars, he gives this error.
To solve this problem, I dropped to JDK 1.6, uninstalled 1.7, and made sure my banks were created using 1.6 JDK tools.
To remove 1.7 jars from the local repository, I simply deleted the directories in ~ / .ivy2 and re-created the Android project using the plugin. And I just followed README for the android plugin for tee.
source share