Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the App name in Xamarin.Forms?

I have developed an Xamarin.Forms app and I initially named the project ”modelapp”. Now when releasing the Android app I changed the name of the app in ”MainActivity.cs” file to ”MyBooks”.

But when installing the apk file it is still displaying as ”do you want to install modelapp?” And even when the app is crashing it is displayed as ”modelapp.android is crashing”

Where else do I need to change the app name to ”MyBooks” so it everywhere gets displayed as ”MyBooks”?

like image 999
D V Avatar asked Oct 17 '22 20:10

D V


1 Answers

Android

1 Right click on Android project and select properties from there select Android Manifest and change your Application name

enter image description here

2 Change your MainActivity Label Text

enter image description here

iOS

In your iOS project search file info.plist and open it with iOS Manifest Editor and select Application tab and change application name here

enter image description here

Note: You can change your package name and Bundle identifier name as well

like image 103
Dinesh Phalwadiya Avatar answered Nov 05 '22 12:11

Dinesh Phalwadiya