Setting the app icon and package name
Xamarin.Android provides a default icon and package name for apps. The icon will be displayed on the Android device's home drawer alongside other application lists, as well as on the action bar at the top of each view.
In order to adjust the defaults for these settings, perform the following steps:
The application icon images are provided in the
Assets
folder of the code bundle.Using Finder/Windows Explorer, copy
ic_launcher.png
from your computer's hard disk to the respectiveResources\drawable
folders.From Xamarin Studio, navigate to
Resources\drawable
, right-click on it, and click on Add Files or alternatively, you can drag and drop the launcher images to the Xamarin StudioResource/drawable
folders.You should now see
ic_launcher.png
listed underdrawable
in the Solution pad.Select the
POIApp
project, right-click on it, and click on Options.Navigate to Build | Android Application.
Change the application name to
POIApp
. This will cause the resulting APK...