Dikobraz
Dikobraz

Reputation: 659

external jar adding to eclipse project

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

Answers (2)

Tofeeq Ahmad
Tofeeq Ahmad

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

iSun
iSun

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

Related Questions