Reputation: 24572
I have a XF application. I thought I had changed everything but the name that appears on the phone under the app icon when I try on my phone locally is still an old name.
When running Xamarin on a Mac OS, does anyone know where to go to change this name for the iOS app?
Upvotes: 2
Views: 104
Reputation: 2289
Using Visual Studio 17.0.4 I just double clicked on the Info.plist in the Solution Explorer. On the Application tab there is an Application Name field where you can change the name that appears under the icon. This ends up changing the MY_APP_NAME under the CFBundleDisplayName.
Upvotes: 0
Reputation: 4821
In Info.plist
change the value for keys CFBundleName & CFBundleDisplayName.
<key>CFBundleDisplayName</key>
<string>MY_APP_NAME</string>
<key>CFBundleName</key>
<string>MY_APP_NAME</string>
Upvotes: 2