Closed muhammetsahin closed 4 years ago
In AndroidManifest.xml set an android:icon attribute that point to a valid icon resource
<application android:label="your_great_application_label" android:icon="@drawable/icon">
Alternatively you may set a custom icon for the notification
[Application]
public class MainApplication : Application
{
public MainApplication(IntPtr handle, JniHandleOwnership transer) : base(handle, transer)
{
}
public override void OnCreate()
{
base.OnCreate();
AzurePushNotificationManager.IconResource = Resource.Drawable.ic_push;
....
Hi,
Im using Plugin.AzurePushNotification v 1.1.0 and
Xamarin forms v 3.1.0.69772
And im already added app cion
But i've got an error.
Could you help me?
Thanks