Android – copy existing project with a new name in Eclipse

  1. Copy your project to a new one (Ctrl+c & Ctrl+v).

  2. Change the package-name in your manifest

  3. Rename your main package with refactor. Don’t forget to select.

  4. Change your application name in manifest

    application android:icon="@drawable/icon" android:label="**new name**"
    

Leave a Comment