Reputation: 659
I'm trying to add external JAR file to eclipse android project. JAR package have config.xml and resources/ folder - where to add them? Because I`m getting error:
System.out Error: Could'nt load configuration file ./config.xml
I've tried to copy resources and config.xml to assets/ folder - but it did`nt help.
Upvotes: 1
Views: 2468
Reputation: 11975
In android way is
right click on project -->Properties -->Java build patch ---> Libraries tab ---> Add External JARs
But the main thing while adding external jar,remember it should be in same folder as it is project
Upvotes: 2
Reputation: 1754
Through this act orders and actions, first right click on the project name in Package Explorer, then open the properties window:
Resources ---> Java build patch ---> Libraries tab ---> Add External JARs
Upvotes: 0