views:

387

answers:

2

While configuring MJAndriod I have got an error as follows: Project has no default.properties file! Edit the project properties to set one.

I have a default.properties which us set to a perfect target and works for another application in the same workspace.

Kindly help me resolve this.

A: 

Don't import it into Eclipse, use create new project from existing source in Eclipse.

racetrack
I've imported projects just fine. Is this an issue with this specific app? Or are you saying just to be sure? If you're saying never import android projects, I'm going to have to give you -1, but I'll wait for the clarification
Falmarri
It's because that particular project is missing the `default.properties` file, and that file gets generated automatically using android tools. Either create a new Android application with existing source and point it to where you downloaded the code (then android tools will automatically generate that for you), or create a `default.properties` file, and put a `target=android-APILEVEL` in it.
racetrack
R.java is getting generated automatically by doing the above described process. When I go and remove it, it gets generated again. Neither is it allowing me to edited the automatically generated one.
Compuser7