AntonS
AntonS

Reputation: 700

Android packaging error

When I compile my Android Project I always get this Error:

Error generating final archive: duplicate entry: about.html

But I can't find any about.html in my Project. Does anyone know how to solve the error?

Upvotes: 1

Views: 438

Answers (3)

Sven Efftinge
Sven Efftinge

Reputation: 3095

This happens if multiple referenced jars contain the same resources (i.e. about.html). I guess you are using jars from eclipse, since its release train requires every released jar to have an about.html contained.

Would be nice, if the android compiler could be told to ignore certain duplications, after all it seems to does so with Manifest.MF files.

Upvotes: 1

James
James

Reputation: 5642

Is it at all possible that you have an about.xml that is duplicated? Or maybe accidentally named about.html somewhere?

Or are you using any external jars? maybe there is in issue in one of those?

Upvotes: 3

prolink007
prolink007

Reputation: 34604

I am not sure if this will help or not, but have you tried the clean up function for your android project? Just curious if that would help this problem. If you right click on your project and go to android tools there is an option to clean up. See if that does anything.

Let me know if it helps or not.

Upvotes: 0

Related Questions