Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to change application display name phonegap

I'm using phonegap to implement an android application and I want to change the android application display name duo to the configured language in the application.

<string name="app_name">My app</string>

Is that possible to change this attribute???

And how can I do that.

like image 987
Hanihh Avatar asked May 29 '13 13:05

Hanihh


2 Answers

you actually need to go to res -> values -> strings.xml and change:

<string name="app_name">Your app's name</string>
like image 26
Fo Nko Avatar answered Sep 24 '22 17:09

Fo Nko


You can set the name of your Application in your config.xml

the tag which defines it is

<name>your appname</name>
like image 152
Sven Delueg Avatar answered Sep 21 '22 17:09

Sven Delueg