tags:

views:

31

answers:

1

For some reason whenever I checkout my Android project from the SVN repository into Eclipse it fails to recognize that it is an Android project.

Even when I use "Convert to Android Project" it says: "Project1 does not exist."

What might be the problem or how do I checkout an android project from a repository?

+1  A: 

Solution::

Open the .project file inside your project folder

add 1) inside <buildSpec> add <name>org.eclipse.jdt.core.javabuilder</name>

  <buildSpec>
     ...
     ...
     ...
 <buildCommand>

org.eclipse.jdt.core.javabuilder

2) inside <natures> add <nature>org.eclipse.jdt.core.javanature</nature>

<natures>
          ...
           <nature>org.eclipse.jdt.core.javanature</nature>
 </natures>

3)go to Properties -> Java Build Path -> Source -> add folder replicaisland/gen

Jorgesys