Reputation:
I started with an application in Android with a silly name. I didn't figure it out that it should have a proper name. And now I want it to be changed over the entire application.
I am not sure how can I achieve this in Eclipse. Should I just copy paste the new name in entire application or is there a second possibility which might be easy?
Stone
Upvotes: 5
Views: 5480
Reputation: 7881
change the app name in String.xml file
like <string name="app_name">MyAppname</string>
it will automaticlly changed in menifest file
Upvotes: 0
Reputation: 782
As I understood, you just need to change attribute android:label
in AndroidManifest.xml
for the Application tag.
Upvotes: 0
Reputation: 4533
just change in your res/value/string.
<string name="app_name">put appropriate name</string>
if not work then android menifest
< activity android:name="< app name>" android:label="< >" android:configChanges="orientation|keyboardHidden">
try its works.
Upvotes: 6