0

Am working on an Android App & have recently changed the App's name. I changed it in AndroidManifest.xml in I then built the signed APK & opened the APK for installation on an android device. I opened using 'Package installer'. Then it shows a screen with the App name & shows the list of permissions that the App asks for. In this screen, am still seeing the old name. How do I change it? Can someone please help?

user2903200
  • 708
  • 2
  • 7
  • 19
  • This may help http://stackoverflow.com/questions/5443304/how-to-change-an-android-apps-name – JustWe May 28 '14 at 02:50

1 Answers1

0

You have to change your "android:label" attribute

<application
    android:icon="@drawable/title"
    android:label="MY NEW APP NAME" >

in your AndroidManifest.xml

I also found this asked and answered here.

Community
  • 1
  • 1
heLL0
  • 1,357
  • 3
  • 23
  • 30