I am trying to rename my monogame application made with Xamarin.Android in Xamarin Studio. Specifically, I want to change the string that appears below my app icon on the end users device.
Here is what my manifest looks like:
<?xml version="1.0" encoding="Windows-1252"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="BumpSetSpike_Android.BumpSetSpike_Android">
<uses-sdk />
<application android:label="SwipeTapSmash"></application>
</manifest>
I would expect that the string that would appear on the device would be "SwipeTapSmash". However, what appears instead is BumpSetSpike_Android, the name of the project.
I've also attached a screenshot of my project settings if that helps.
Thanks! Matt