Reputation:
I have an android project and use Android Studio as IDE. How can I add external jar's to the build path or how can I use them?
My project is libGDX based, so I haven't libs
folder in root.
Upvotes: 2
Views: 96
Reputation: 1460
The jar I was importing had been compiled/exported with Java 7 in mind. Once I enabled compliance with Java 6 it worked fine.
To sum it up, when adding an external jar file in Android Studio:
Upvotes: 1