Renaming an app on android xamarin forms

0

How can I change the name of an application, the name that appears under the icon when an app is going to be opened in the android launcher.

I added in the tag app

<application android:label="Nombre App">

But the name has not changed.

    
asked by César Alejandro M 22.07.2018 в 19:46
source

1 answer

1

Modify the Label attribute in your MainActivity.

[Activity(Label = "NombreDeMiApp", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true)]
public class MainActivity
{
    ...
}
    
answered by 04.08.2018 / 00:10
source