I'm working on a fairly large sized android project, with multiple apps & libs, each with their own dependencies etc. The team working on this project is starting to grow, and it seems that the "checkout & build" dream is quickly evaporating. Every time someone adds a project to eclipse, everyone else on the team has to do the "file import" dance. In .net, you can just commit your sln file to source control and when people make changes to the environment, everyone stays in sync. Is there anything like this in the android eclipse environment? Can i just commit my entire workspace, or something, to git and have everyone just be on the same page???
Asked
Active
Viewed 151 times
0
-
To me it looks like you need external build tools (Ant or maven) to manage project dependency and apply unified solution for setup, build and release projects. – yorkw May 04 '12 at 10:24
2 Answers
0
Will this plugin do http://www.eclipse.org/egit/ ?

Alexander Kulyakhtin
- 47,782
- 38
- 107
- 158
-
apparently... kinda of sucks, you think there'd be some eclipse equivalent of the visual studio .sln file... – Ben May 05 '12 at 07:38
-
As yorkw said try ant tool. It automates routine tasks very well. It requires some study though. I don't know maven but heard it's similar to ant – Alexander Kulyakhtin May 05 '12 at 07:52
-
yes, ant is fine for building the codebase, but will it actually import the projects into eclipse? – Ben May 07 '12 at 16:37
0
if you are using eclipse notice "team" http://www.vogella.com/articles/EGit/article.html

David Allan Houser Jr
- 129
- 2
- 5
-
switched to IntelliJ over a year ago, never looking back to eclipse. ever. – Ben Oct 01 '13 at 19:29