Change app title in Xamarin Android

3

I'm not able to get this string $projectname$ from my title into an application on Xamarin Android.

I have already tried editing AndroidManifest.xml and AssemblyInfo.cs and nothing. I searched for this string in the entire project and also did not find it.

This error started to occur after the last time I upgraded Xamarin.

Has anyone had this too?

    
asked by anonymous 22.05.2015 / 23:39

1 answer

3

You can put the label on top of the activity, like this:

[Activity (Label="Awesome Demo App")]

For more information: link

    
26.05.2015 / 14:23