android 环信聊天视频问题

1,发送视频不能大于10M 大约10M会发送不过去

2,android 8.0发送视频 可能正常打开 但是9.0打开会崩溃

为什么呢 经调研查实

FileProvider.getUriForFile(context, context.getPackageName() + “.fileProvider”, file);

报错

解决方案为 在自己项目res创建

xml包 xml下面新建 file_paths.xml

然后在 manifest 下面

   

        android:name="android.support.v4.content.FileProvider"

        android:authorities="**项目包名**.fileProvider"

        android:exported="false"

        android:grantUriPermissions="true">

       

            android:name="android.support.FILE_PROVIDER_PATHS"

            android:resource

你可能感兴趣的:(android 环信聊天视频问题)