How to Change an Android App's Name? Last Updated : 11 Jul, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report Whenever you make a project in Android studios you give a project name, your app's name is derived from that. Consider after working on your project in mid-way or in the end you want to change your app's name how do you do that? Well, this article is concerned with that, let us see how to do it. Step by Step Implementation Step 1: Go to the AndroidManifest.xml file Go to the app > manifests > AndroidManifest.xml file and change the android:label field in your application node in AndroidManifest.xml. As we can see in the Manifest.xml file that the attribute android:label = "@string/app_name" has its value stored in the strings.xml file when we change the value from the strings.xml file the apps name would change. Step 2: Go to the strings.xml file Go to the app > res > values > strings.xml file as shown in the below image. In this file we have a string name as app_name it is the string resource that holds the current app name which is passed in the Manifest.xml file's application tag inside the label attribute. So we change this string resources value to My_App. Output: BeforeAfter Comment More infoAdvertise with us Next Article How to Change an Android App's Name? B bhavikbhatia17 Follow Improve Article Tags : Android Similar Reads How To Make An Android App Have you always wanted to make an Android app but got lost in the complexity of the Android Studio or the technical jargon used in the development process? Don't worry, you have come to the right place. We are going to help you get started with your first Android app.The app that we are going to mak 7 min read How to Change Font of Toolbar Title in an Android App? Google Fonts provide a wide variety of fonts that can be used to style the text in Android Studio. Appropriate fonts do not just enhance the user interface but they also signify and emphasize the purpose of the text. In this article, you will learn how to change the font-family of the Toolbar Title 2 min read How to add Rate the App feature in Android When you publish your app on google play store it is important to get feedback from the user. Unless the user does not love or hate your app, they are not likely to go out of their way to rate your app. Since high rating indicates the success of your app, and even criticism is required to make the a 2 min read How to Change the Default Icon of Android App? In order to get the app published in stores like Google Play Store, Amazon App Store, etc, or if you just want to personalize the app, the default icon can be changed. We can change the icon of the Android App by using Android Studio itself and by following the below steps: Step 1: Create Android St 2 min read How to Change the API SDK Level in Android Studio? Generally, API level means the Android Version. This determines which version the developers are targeting their application and what is going to be the minimum level of the android version in their application will run. For setting the Minimum level and Maximum level android studio provides two ter 2 min read Like