-
- Breaking change the
AndroidIconclass is now a generic class i.e.AndroidBitmap<T>. This has resulted in the following change
- Breaking change the
- the type of the
iconproperty that belongs to thePersonclass has changed fromAndroidIcon?toAndroidIcon<Object>? - [Android] Added the
ByteArrayAndroidIconclass that implements theAndroidIcon<T>class. This allows using a byte array to use as the icon for a person in a message style notification. AByteArrayAndroidIcon.fromBase64String()named constructor is also available that will enable this using a base-64 encoded string. Thanks to the PR from Alexander Petermann