views:

68

answers:

1

I have an Android Eclipse project and an associated Android Test Eclipse project checked into a subversion repository. Given a checked out working copy, how do I bring the Android Test project into an Eclipse workspace?

It's easy to add the Android project to the workspace (just File->New Project->Android Project->From Existing Source and point it at the directory in the svn working copy). But, the 'New Android Test Project' does not have an option to create from existing source.

A: 

I think you want Import > Existing project, especially if the .project and .classpath files are checked into version control.

MatrixFrog
I'm hoping for a method to do this that doesn't require checking in the .project and .classpath files. For a non-test Android project, Google seems to have improved over by default Eclipse behavior by not requiring the .project and .classpath to be versioned.
David B.