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?
Asked
Active
Viewed 824 times
2
-
https://stackoverflow.com/a/14216822/2147481 – Gokul Nath KP Apr 16 '21 at 15:15
2 Answers
1
Just go to your values property, then strings and you will be able change it.
<resources>
<string name="app_name">My application</string>

Kimanthi K.
- 595
- 6
- 13
0
Go to res -> values -> strings.xml
<resources>
<string name="app_name">My application</string> //change this text with desired text
</resources>

Priyanka
- 1,791
- 1
- 7
- 12