diff --git a/kotlin-audio/src/main/java/com/doublesymmetry/kotlinaudio/notification/NotificationManager.kt b/kotlin-audio/src/main/java/com/doublesymmetry/kotlinaudio/notification/NotificationManager.kt index 11264e08..2cfbcbaf 100644 --- a/kotlin-audio/src/main/java/com/doublesymmetry/kotlinaudio/notification/NotificationManager.kt +++ b/kotlin-audio/src/main/java/com/doublesymmetry/kotlinaudio/notification/NotificationManager.kt @@ -80,6 +80,9 @@ class NotificationManager internal constructor( if (artwork != null && holder?.artworkBitmap == null) { var imgrequest = ImageRequest.Builder(context) .data(artwork) + if (Build.MANUFACTURER == "samsung") { + imgrequest = imgrequest.transformations(CropSquareTransformation()) + } context.imageLoader.enqueue( imgrequest.target { result -> val resultBitmap = (result as BitmapDrawable).bitmap