I have to select images, for that I'm using a library FishBun
https://github.com/sangcomz/FishBun
In an Activity screen it is working fine and I'm able to get URI's in onActivityResult
But, in Fragment onActivityResult is not being called. I have not intent to call startActivityForResult
When button click - the following method will call
FishBun.with(xactivity)
.setImageAdapter(new CoilAdapter())
.setMaxCount(15)
.setMinCount(1)
.setAlbumSpanCount(1, 2)
.setActionBarColor(Color.parseColor("#000000"), Color.parseColor("#000000"), true)
.setRequestCode(UIKitConstants.RequestCode.MULTI_IMAGE)
.startAlbum();
How to get result? Please help me on this