java.lang.IllegalArgumentException: MIME type .mp4 cannot be inserted into content://media/external/video/media; expected MIME type under video/*
我出现这个错误是其他手机正常 只有华为手机出现
values.put(MediaStore.Video.Media.MIME_TYPE, TextUtils.isEmpty(suffixType) ? “video/mp4” : suffixType);
默认是video/mp4然后设置type为了.mp4 没想到华为不行然后我就使用默认参数video/mp4好了