2

I have an application that has been working and compiling just fine so far. However when I go to Export it, Android Dependancies is added automatically, which throws a

Conversion to Dalvik format failed with error 1

I've put research into this and I know it is because Android Dependencies is adding duplicate files. I'm currently trying to clean that up, however is there a way to disable Android Dependancies from automatically being generated on export?

AJak
  • 3,863
  • 1
  • 19
  • 28

3 Answers3

1

Ended up just fixing the problem by removing the duplicated Jar files. Still wondering if this is possible, even if its not a good solution to the problem I ran into.

AJak
  • 3,863
  • 1
  • 19
  • 28
0

Just clean your project via Project -> Clean.

Adrian Toman
  • 11,316
  • 5
  • 48
  • 62
StealthOne
  • 194
  • 9
  • Thanks for the reply, but I've tried that. A clean doesn't fix the duplicate file issue. I have to remove those files myself, but thats proving to be a bit of a challenge considering the complexity of the project – AJak Jul 18 '12 at 00:17
0

Have you referred to these other similar questions?

  1. "Conversion to Dalvik format failed with error 1" on external JAR
  2. Conversion to Dalvik format failed with error 1 Solution?
  3. Conversion to Dalvik format failed with error 1 with javax/net/SocketFactory.class
  4. "Conversion to Dalvik format failed with error 1" -- on export only
Community
  • 1
  • 1
TJ Thind
  • 784
  • 5
  • 17
  • Yeah I've gone through a ton of these on stack overflow so far. Nothing seems to be effective so far – AJak Jul 18 '12 at 00:28