darsh2 / MultipleImageSelect

Android library that provides for multiple image selection.
Apache License 2.0
300 stars 112 forks source link

onActivityResult is not called after selection of images #54

Open Prakkhar opened 6 years ago

Prakkhar commented 6 years ago

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);