- Breaking change the
AndroidBitmapclass is now a generic class i.e.AndroidBitmap<T>. This has resulted in the following changes - the type of the
largeIconproperty that belongs to theAndroidNotificationDetailsclass has changed fromAndroidBitmaptoAndroidBitmap<Object> - the type of the
largeIconandbigPictureproperties that belongs to theBigPictureStyleInformationclass has changed fromAndroidBitmaptoAndroidBitmap<Object> - [Android] Added the
ByteArrayAndroidBitmapclass that implements theAndroidBitmaps<T>class. This allows using a byte array to use as the large icon for a notification or as big picture if the big picture style has been applied. AByteArrayAndroidBitmap.fromBase64String()named constructor is also available that will enable this using a base-64 encoded string. Thanks to the PR from Alexander Petermann