没有安装媒体插件?离子3

时间:2018-03-11 10:21:17

标签: ionic-framework ionic2 ionic3 ionic-native cordova-media-plugin

我有一个需要使用Media Plugin的Ionic 3应用。

当我按下"记录"我的应用程序上的按钮,执行此代码块:

this.platform.ready().then(() => {
    this.fileName = this.commentsProvider.getFileName(this.platform);
    this.filePath = this.commentsProvider.getFilePath(this.platform, this.fileName);
    this.audio = this.media.create(this.filePath);
    this.audio.startRecord();
    this.recording = true;
});

它不起作用。控制台抛出:

console.warn: Native: tried accessing the Media plugin but it's not installed. 

注意:我通过USB在连接的Android设备上运行应用程序。

您可以看到我使用platform.ready(),但无论如何我仍然遇到此问题。

有什么想法吗?

提前感谢!

编辑:我已删除node_modulesplugins个文件夹,并运行npm install,问题仍然存在。

0 个答案:

没有答案