I have used following code for pick image from gallery. It is working till android 13 (Api 33) but it not working (gallery is not opening) on Android 14 (Api 34).
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
photoPickerIntent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
if (photoPickerIntent.resolveActivity(getPackageManager()) != null) {
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, PICK_IMAGE_MULTIPLE);
}
Please help me in this. Thanks in advance.
This is what I used in my project and it works on the latest android. mine has a firebase upload part it may be included in answer so use it as reference to help guide you.