Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android "Manage Applications" shows my app name as my package name instead of a friendly name

Tags:

android

Manage applications shows my app as "com.mydomain.myapp" instead of "My App". What do I need to change?

like image 261
Corey Trager Avatar asked Jan 17 '10 03:01

Corey Trager


3 Answers

Here's my problem. In the manifest, this was at the activity level instead of the app level. android:label="@string/app_name">

like image 51
Corey Trager Avatar answered Nov 08 '22 15:11

Corey Trager


I also just had this problem.

As you said, must include android:label="@string/app_name" at < application level. I also performed a "Clean Project". These two things fixed the issue for me.

like image 40
corrytrevor Avatar answered Nov 08 '22 13:11

corrytrevor


I had same problem

I think this happens because build project does not affect the manifest file change on the go

first I clean the project and then restarted the emulator

after that project installed with my nice app name.

like image 21
KATJ Srinath Avatar answered Nov 08 '22 14:11

KATJ Srinath