views:

125

answers:

1

I created a project, probably as an Android project without thinking. I then did a lot of work bringing in source, etc. but it is not an Android target. However, when I start up Eclipse, it keeps popping-up a dialog reminding me that I have not established the Adroid device settings. How can I make it stop -- without restarting the workspace?

+1  A: 

You'll have to remove android-specific stuff from .classpath & .project files that are in the root of the project folder, namely

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

<buildCommand>
    <name>com.android.ide.eclipse.adt.ApkBuilder</name>
    <arguments>
    </arguments>
</buildCommand>

<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
alex
Perfect. I found the settings but I will do the surgery this weekend.
mobibob