Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change LIBGDX default game app name?

Tags:

android

libgdx

I am working on android game development, whenever i test my game on my device, it is installed with the name "My LIBGDX Game", how can I change it?

like image 423
mfs Avatar asked Nov 14 '13 19:11

mfs


1 Answers

To change your app name, you simply need to change the value of the android:label attribute in the <application> tag of your AndroidManifest.xml.

This attribute usually references a string in strings.xml which you can edit.

like image 65
Raghav Sood Avatar answered Oct 07 '22 10:10

Raghav Sood