We previously used to post image on facebook like this...
Uri imageUri = getImageUri()
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_STREAM, imageUri);
intent.setType("image/*");
intent.setPackage("com.facebook.katana");
startActivity(intent);
But now the image doesn't get attached to the newsfeed post. It shows a toast saying: "Unable to share to Reels. To share this content, create a post"
Any help will be appreciated.