我需要帮助。
TypeError: Cannot read property 'FileProvider' of undefined
当我尝试记录时出现错误。
const options: VideoRecorderOptions = {
hd: true,
saveToGallery: true
}
const videorecorder = new VideoRecorder(options)
videorecorder.record().then((data) => {
console.log(data.file)
}).catch((err) => {
console.log(err)
})
答案 0 :(得分:0)
这似乎是Android X兼容性问题,插件作者将不得不更新插件以支持{N} 6.x及更高版本。
android.support.v4.content.FileProvider现在为androidx.core.content.FileProvider。您可以更新代码,然后在本地进行编译。