You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/stream_video_flutter/CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,9 @@
9
9
🔄 Dependency updates
10
10
* Updated `flutter_callkit_incoming` dependency to the latests (2.5.5) version. That version contains Android 14 compatibility fixes for ringing notifications and lock screen handling.
11
11
12
+
🐞 Fixed
13
+
* (Android) CircleTransform Argument type mismatch on Bitmap.Config?
Copy file name to clipboardExpand all lines: packages/stream_video_flutter/android/src/main/kotlin/io/getstream/video/flutter/stream_video_flutter/service/notification/image/CircleTransform.kt
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,8 @@ class CircleTransform : Transformation {
16
16
if (squaredBitmap != source) {
17
17
source.recycle()
18
18
}
19
-
val bitmap =Bitmap.createBitmap(size, size, source.config)
19
+
val config = source.config ?:Bitmap.Config.ARGB_8888
20
+
val bitmap =Bitmap.createBitmap(size, size, config)
0 commit comments