Fully change package name including company domain

Filip Luchianenco picture Filip Luchianenco · Sep 1, 2013 · Viewed 150.1k times · Source

Let's suppose this is the package name: package com.company.name. How do I change company?

P.S. I saw how to change name but not company. I'm using Android Studio.

Answer

Luch Filip picture Luch Filip · Sep 1, 2013

You can do this:

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

reference: How do I rename the android package name?