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.
Modify the Label attribute in your MainActivity.
[Activity(Label = "NombreDeMiApp", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true)] public class MainActivity { ... }