Eclipse project import prompt "No projects are found to import"

If you find into the project, there have "No projects are found to import" prompt, whether there are hidden files .project first look at the project directory, as well as the directory structure but also a hidden file .classpath, if there is no solution 
decision Method.

Method 1: The most straightforward operation, the .project, .classpath other items copied file, you can modify the appropriate place.
1) .project file only need to modify <name> AboxTVExchange </ name> The name of the project can be
2) .classpath files typically do not change, as follows:
<xml Version = "1.0" encoding = "UTF-8"??>

<CLASSPATH>

<classpathentry kind = "the src" path = "the src" />

<classpathentry kind = "the src" path = "Gen" />

<classpathentry kind = "CON" path = "com.android.ide.eclipse.adt .ANDROID_FRAMEWORK "/>

<classpathentry kind =" Output "path =" bin "/>

</ CLASSPATH>

kind =" ... " This refers to the type of project in the directory.
kind = "src" of the source file directory, files in this directory will be compiler. kind = "output" is the output file compiles java
directory, file src directory is compiled to this directory.

When you modify the project properties -> java build path of this file will be automatically modified

Method 2: the source package to a non-workspace directory, then new -> android project -> create project from exist source

added write the name of the project can be
attention if do not move to non-workspace directory, the following error message appears:

Invalid project the Description
------> the Detail: - >>> xxxx (project path) at the Overlaps Another LOCATION of project: 'xxxx'
the Eclipse plug-in to create the project when you need to create a directory with the same name in the workspace directory.
But find the corresponding directory under the workspace directory already exists, an error message will be reported at the top

 

Based on NFC-enabled Android system, second-generation card reading example, Android NFC phone real name system must meet the following conditions: 
1, Android phone comes with NFC capabilities 
2, Annex or GitHub address apk: https://github.com/youyou8/nfcreader

Guess you like

Origin www.cnblogs.com/Alex80/p/11519706.html