I am developing an application for Android, and for one component I can test outside of Android, since it does not use any Android codes.
It uses xstream, and I have the following libraries: xstream1.4.6 xpp3-min-1.1.4c xmlpull-1.1.3.1
When I unit test my code outside of Android, everything works fine.
When I try to use it with Android, I get the following error:
[2014-01-15 18:59:23 - Dex Loader] Unable to execute dex: Multiple dex files define Lorg/xmlpull/v1/XmlPullParser; [2014-01-15 18:59:23 - AndroidMentor] Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Lorg/xmlpull/v1/XmlPullParser;
This is a clean brand new android app android android junit. I tried to remove garbage, clean, etc., but not to use. This is just this one, others do not show any problems.
I need this pullparser as others do not seem to work with xstream for me.
android dex xmlpullparser
Neil walker
source share