MultipleImageSelect icon indicating copy to clipboard operation
MultipleImageSelect copied to clipboard

onActivityResult is not called after selection of images

Open Prakkhar opened this issue 7 years ago • 0 comments

Yesterday it was working fine but today when I check then onActivityResult is not called. I'm using this on fragment. Here is my code:


 Intent intent = new Intent(getContext(), AlbumSelectActivity.class);
                intent.putExtra(Constants.INTENT_EXTRA_LIMIT, 3);
                getActivity().startActivityForResult(intent, Constants.REQUEST_CODE);

Prakkhar avatar Mar 15 '18 12:03 Prakkhar