Android Studio: changing the app name

The app name is normally saved in string name="app_name"

To change the app name you should navigate:


CIT_299/week03/src/main/res/values/strings.xml

Where: 
  • CIT_299 - is your project name
  • week03 - is your app folder
  • main/res - is how Android Studio places resources folder
  • values - is you DEFAULT LANGUAGE values folder




Make sure you change any other language you want to support e.g. values-es for Spanish


Next, you should rename the DIRECTORY and MODULE name:


Finally, make sure settings.gradle include the newly named module

include: ':converter', ':week2'




No comments:

Post a Comment