I have two Android lib projects packaged as JAR files. When I put the two JARs in my project's libs folder the eclipse console throws me this error:
Error generating final archive: Found duplicate file for APK: res/values/attrs.xml
Origin 1: /Users/javier/dev/myProject/libs/facebook-sdk.jar
Origin 2: /Users/javier/dev/myProject/libs/sliding-menu.jar
There is a way to avoid this error without setting the projects as libraries of my application in Eclipse? I need to share my source code and I want that the project includes these libraries without sharing the facebook sdk project or sliding menu project folder.
Thanks