So i try to open a PNG File on the system using the Gallery, but for some reason I always get an ActivityNotFoundException
saying the following :
No Activity found to handle Intent { act=android.intent.action.VIEW dat=context://storage/emulated/0/Android/data/com.myapp/files/MyApp/1533800534172image001.png typ=image/* }
My code looks like this :
val intent = Intent()
intent.action = Intent.ACTION_VIEW
intent.setDataAndType(uri,"image/*")
context.startActivity(intent)