Всем доброе утро!
Помогите разобраться, ошибок нет, но и Интент не открывается
try {
val file = File(context!!.cacheDir, "invoice.png")
val newFile = File(file, "invoice.png")
val out = FileOutputStream(file)
bitmap.compress(Bitmap.CompressFormat.PNG,100,out)
out.flush()
out.close()
file.setReadable(true,false)
val shareIntent = Intent()
shareIntent.action = Intent.ACTION_SEND
shareIntent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(newFile))
shareIntent.type = "image/png"
startActivity(Intent.createChooser(shareIntent, "Share image via"))
} catch (e: Exception) {
e.printStackTrace()
}