I want to show pdf converted from base64 string. In ios swift its simple as loading the decoded string to webview
fun decodeString() {
val imageBytes = Base64.decode(pdf_string, Base64.DEFAULT)
val decodedImage = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.size)
binding.imageView4.setImageBitmap(decodedImage)
}
}
So no need to make a pdf file and store it.
Iam getting the error "D/skia: --- Failed to create image decoder with message 'unimplemented"