Skip to content

Commit 053ee0b

Browse files
gmackallGray Mackall
and
Gray Mackall
authored
[flutter_local_notifications] Fix crash on latest Flutter master due to ambiguous method call (#2355)
* fix crash on latest flutter master * fix whitespace (I think) --------- Co-authored-by: Gray Mackall <[email protected]>
1 parent 27e3191 commit 053ee0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: flutter_local_notifications/android/src/main/java/com/dexterous/flutterlocalnotifications/FlutterLocalNotificationsPlugin.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ private static void setBigPictureStyle(
10451045
}
10461046

10471047
if (bigPictureStyleInformation.hideExpandedLargeIcon) {
1048-
bigPictureStyle.bigLargeIcon(null);
1048+
bigPictureStyle.bigLargeIcon((Bitmap) null);
10491049
} else {
10501050
if (bigPictureStyleInformation.largeIcon != null) {
10511051
bigPictureStyle.bigLargeIcon(

0 commit comments

Comments
 (0)