Error converting replication from SVN to Eclipse to Android project

I tried this for several hours without success.

http://replicaisland.googlecode.com/svn/trunk/

I added the repository and successfully uploaded the project to the workspace using the option “check as a project in the workspace”, calling it replicaisland. I was tired using the option “check as a project using the Setup Wizard”, but when I selected the android project, I had to enter data that I don’t have yet.

I right click on the project and select "convert to Android project" which gives me an error

Errors occurred during the build.
  Errors running builder 'Android Resource Manager' on project 'replicaisland'.
  Path must include project and resource name: /replicaisland
  Path must include project and resource name: /replicaisland
+3
source share
2 answers

Decision::

Open the .project file inside the project folder

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

  <buildSpec>
     ...
     ...
     ...
  <buildCommand>
        <name>org.eclipse.jdt.core.javabuilder</name>
        <arguments>
        </arguments>
    </buildCommand>
</buildSpec>

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

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

3) "" → " Java" → "" → replicaisland/gen

+4

- Android-. .classpath .project .

.project <name> .

0

Source: https://habr.com/ru/post/1759929/


All Articles