guilhermexot
guilhermexot

Reputation: 277

Having to add library files manually. Why?

I'm having this weird issue on my Eclipse:

Once I load it I get an error with the support-v4.jar, deleted it from the project libs and added as external jar file @ Jata Build Path - problem solved

Then I had the same problem with roboguice libs and this went on for ALL my project libs. Can anyone help me with that? It's a pain to delete and add manually all libs everytime that I pull this project from my group's git repo.

Thank you

Upvotes: 1

Views: 66

Answers (1)

MSA
MSA

Reputation: 2482

The simple way to deal whit this problem is using MAVEN, add dependency and never have a headache.

Usefull links:

http://www.vogella.com/articles/AndroidBuildMaven/article.html

https://code.google.com/p/maven-android-plugin/

Cheers

Upvotes: 2

Related Questions