How do I rename the android package name? [duplicate]

You can do this:

  1. Change the package name manually in the manifest file.
  2. Click on your R.java class and the press F6 (Refactor->Move…). It will allow you to move the class to another package, and all references to that class will be updated.

Leave a Comment