Steps to change app name in androidx
Steps to change app name in androidx
I tell you How we change name in android studio
after when you start a working on your project.
So let's start
Step-1
HelloApplication is old name of our application.we have to change this app name AndroidWithAtul.
Step-2
we have to find strings.xml file
So for this
follow this location....
1.click on app folder
2.Then click on res folder
3.Then click values folder
4.Then click strings.xml file
Step-3
strings.xml file contains all string which are used in your whole application.It make more easy to modify name.
When you click on string.xml file .Then there is some code appear like this...
<resources>
<string name="app_name">Hello application </string>
</resources>
like this we will have to change app name Hello application
<resources>
<string name="app_name">AndroidwithAtul </string>
</resources>
I tell you How we change name in android studio
after when you start a working on your project.
So let's start
Step-1
HelloApplication is old name of our application.we have to change this app name AndroidWithAtul.
Step-2
we have to find strings.xml file
So for this
follow this location....
1.click on app folder
2.Then click on res folder
3.Then click values folder
4.Then click strings.xml file
Step-3
strings.xml file contains all string which are used in your whole application.It make more easy to modify name.
When you click on string.xml file .Then there is some code appear like this...
<resources>
<string name="app_name">Hello application </string>
</resources>
like this we will have to change app name Hello application
<resources>
<string name="app_name">AndroidwithAtul </string>
</resources>
like this then save you file by pressing ctrl+s
and run your application
So output appear like this
I hope all of you will understand how to change your app name in android studio.
Thanks for reading my blog.........
Post a Comment