Reputation: 20995
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
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