I would like to integrate my application with various file storage services. I followed the quickstart instructions for the sdk disk, which adds a bunch of jars to my libs project directory. In addition, the following list of banners is required for Dropbox sdk:
- General Logging 1.1.1.jar
- transfer-android-SDK-1.5.3.jar
- HttpClient-4.0.3.jar
- httpcore-4.0.1.jar
- httpmime-4.0.3.jar
- JSON-simple 1.1.jar
As soon as they are all added to my project, I get the following error when trying to run:
Dex Loader] Unable to execute dex: several dex files define Lorg / Apache / HTTP / entity / mime / FormBodyPart;
If I delete the httpmime jar added to Dropbox, my project works fine. But is this a safe way to resolve the conflict? Is there an alternative method by which I can build my project and include all the necessary banks?
source share