android-multiple-images-selector
android-multiple-images-selector copied to clipboard
Android7.0 打开相机崩溃
点击相机奔溃了
@limhGeek did you found any solution ?
Unfit Android7.0 to open the camera crash
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();
}
}
working perfectly on android 7.
Thank you for the support of the big guy
my pleasure dear.