How best to migrate projects to 1.5?


1. Copy the old root directory to a new place
2. Delete R.java from the source tree
3. Delete the root directory of your class files
4. Create new project
    5. Use existing source option
    6. Point it to the root of your directory
    7. Pick your project sdk, etc options on that screen
8. Create project
9. Update the android manifest file with the proper sdk directive

<manifest>
...
    <uses-sdk android:minSdkVersion="3" />
...
</manifest>

1. import
2. General/Existing projects into work space
3. Choose your root directory
4. I prefere copy projects into workspace
5. Finish

1. import
2. General/Existing projects into work space
3. Choose your root directory
4. I prefere copy projects into workspace
5. Finish
6. Go project and delete old r.java
7. Go to project properties/android/Set project target to what you want

This seem to work pretty consistently.

The source root directory is where your project is to import from.

By chosing "copy into workspace", eclipse will physically copy the files from the source root directory to a directory under the eclipse work space. Once this is done, if you chose you can delete the source project root directory.

in fact eclipse remembers these things if you have imported a project before like this. So it is pretty nice. However due to the convenience watch out for defaults.


Download samples first
eclipse
new
other
android
android project from samples
Choose the sample project
  if you have the project name already in eclipse
  rename the previous project in eclipse and 
  repeat.