Rahul Iyer
Rahul Iyer

Reputation: 20995

How to change name of Android Studio Project after creation?

I have created an android studio project names "My AppName". All the packages are in the namespace com.mycompanyname.myappname.

I have decided to change the app name to "My newAppName"

Is there a way to easily refactor this so all changes are made in all files, or do I need to create my project again from scratch?

Upvotes: 1

Views: 1041

Answers (1)

Amaury Medeiros
Amaury Medeiros

Reputation: 2233

Open your AndroidManifest.xml file and you should be able to see "My AppName" there. Right-click on it, then select Refactor -> Rename.

Upvotes: 2

Related Questions