Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xamarin.Forms application Icon

Does someone know where or how I can set the Xamarin.Forms Application icon and or Launchscreen ?

Tried in visual studio properties of my current project but I don't see the option there.

like image 362
Stefan van de Laarschot Avatar asked Oct 14 '15 06:10

Stefan van de Laarschot


2 Answers

Each platform should have its own project that you can access. You set these things in the properties of the these (if you are in Xamarin Studio). In Visual Studio I think you can edit the info.plist for iOS and the manifest for Android (both of these are located in the platform specific projects).

like image 57
David Pilkington Avatar answered Oct 22 '22 21:10

David Pilkington


You can replace the icon.png in the "drawable" folder(s) in the android project and the resources dir for iOS. There are different drawable folders in Android, etc. For more info on Xamarin forms and images check out this link:

Working with Images in Xamarin.Forms

like image 21
bbqchickenrobot Avatar answered Oct 22 '22 23:10

bbqchickenrobot