Soy César Mora Asked: 2020-07-23 09:46:56 +0800 CST 2020-07-23 09:46:56 +0800 CST 2020-07-23 09:46:56 +0800 CST Rename an app in android xamarin forms 772 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 have added in the app tag <application android:label="Nombre App"> But the name hasn't changed. formularios 1 Answers Voted Best Answer Enrique Arce 2020-08-04T14:10:30+08:002020-08-04T14:10:30+08:00 Modify the Label attribute on your MainActivity. [Activity(Label = "NombreDeMiApp", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true)] public class MainActivity { ... }
Modify the Label attribute on your MainActivity.