Commit 74a9341c39f4884e4e5ec9284c1c922017e58c89

Authored by 袁思汶
1 parent bc52cce7

相册选取兼容MP4格式

config.gradle
@@ -21,7 +21,7 @@ ext { @@ -21,7 +21,7 @@ ext {
21 //编译方式 21 //编译方式
22 debug : false, 22 debug : false,
23 //版本号 23 //版本号
24 - version: "1.1.5.7", 24 + version: "1.1.5.8",
25 //Lib库前缀 25 //Lib库前缀
26 packeg : "com.cnlive.media", 26 packeg : "com.cnlive.media",
27 //Lib库名称 27 //Lib库名称
lib_media/src/main/java/com/cnlive/media/utils/FileTypeUtil.java
@@ -221,7 +221,7 @@ public class FileTypeUtil { @@ -221,7 +221,7 @@ public class FileTypeUtil {
221 return type == null ? "" : type; 221 return type == null ? "" : type;
222 } 222 }
223 223
224 - private static final String video_types = ".avi.asf.asx.flv.lsf.lsx.mov.mp3.mp4.mpeg.mpg4"; 224 + private static final String video_types = ".avi.asf.asx.flv.lsf.lsx.mov.mp3.mp4.mpeg.mpg4.MP4";
225 private static final String gif_types = ".gif"; 225 private static final String gif_types = ".gif";
226 private static final String no_support_types = ".bmp.tiff"; 226 private static final String no_support_types = ".bmp.tiff";
227 227