https://github.com/TeamHive/capacitor-email是一个电容器电子邮件插件,允许您从 Ionic 4 移动应用程序发送电子邮件。我无法让演示在 Android Studio 3.4.1、@ionic/angular 4.0.0-beta.7 和 @capacitor/core 1.1.0 中运行。我收到 5 个构建错误,例如:
ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve project :capacitor-android-plugins.
如果我尝试在入门 Ionic 应用程序中使用 Github 页面上提供的示例代码,我会收到运行时错误:
E/Capacitor/Plugin/Console: ERROR Error: Uncaught (in promise): TypeError: Cannot read property 'requestPermission' of undefined
在下面的示例代码中,基于 Github 示例代码,console.log 输出this.email = {}
,因此new Email()
返回一个空对象。
email: Email;
constructor() { }
ngOnInit() {
this.email = new Email();
console.log('this.email = ' + JSON.stringify(this.email));
}
async sendEmail() {
try {
await this.email.hasPermission();
} catch (e) {
await this.email.requestPermission();
}
有没有人让这个电容器插件可以工作?