Muhammad Nouman
Muhammad Nouman
Thank you dear
@limhGeek did you found any solution ?
i resolved this issue bro you just need to add this code in Application class's onCreate method. ``` if(Build.VERSION.SDK_INT>=24){ try{ Method m = StrictMode.class.getMethod("disableDeathOnFileUriExposure"); m.invoke(null); }catch(Exception e){ e.printStackTrace(); } }...
my pleasure dear.
Same error
@yoonusc have you resolved the issue?
@yoonusc this is our mistake not an issue in the library there is a really nice feature in this library // min size of the image which will be shown;...
@albinsunnye yes sure tell me the problem.
i solved the issue you just need to paste this code in your Application class. ``` if(Build.VERSION.SDK_INT>=24){ try{ Method m = StrictMode.class.getMethod("disableDeathOnFileUriExposure"); m.invoke(null); }catch(Exception e){ e.printStackTrace(); } } ```