i have code working good in api < 24 but in api 24 not working and crash app code :
File root = new File(path);
Uri uri = Uri.fromFile(root);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "image/jpeg");
startActivity(intent);
searching a lot but not find answer! so how intent in android >= 7 (api >= 24) ?