2

I just finished my first android app and generated an apk file to test on my phone. Then I realized I left the default "My Application" name when making the project. So the app is installed with the name "My application". How do I change the name of the app?

hade34
  • 47
  • 3

2 Answers2

1

Just go to your values property, then strings and you will be able change it.

<resources>
<string name="app_name">My application</string>
Kimkim
  • 129
  • 9
0

Go to res -> values -> strings.xml

<resources>
    <string name="app_name">My application</string> //change this text with desired text
</resources>
Priyanka Rajput
  • 1,387
  • 1
  • 4
  • 11