Intercom を Ionic 4 と統合しようとしています。
私が見つけた唯一のドキュメントは、Ionic 3 のこれです... https://ionicframework.com/docs/native/intercom/
これが Ionic 3 用であることは知っていますが、私は Ionic 4 を使用していますが、見つけた唯一のドキュメントでした。実装しようとすると、このエラーが発生します...
core.js:12501 ERROR Error: Uncaught (in promise): TypeError: Object(...) is not a function
TypeError: Object(...) is not a function
Intercom を Ionic 4 と統合することはまだできないのでしょうか? これが私のコードです(簡略化)...
import { Component } from '@angular/core';
import { Intercom } from '@ionic-native/intercom';
@Component({
selector: 'app-home',
templateUrl: 'home.page.html',
styleUrls: ['home.page.scss'],
})
export class HomePage {
constructor(private intercom: Intercom) {
}
ShowIntercom() {
this.intercom.displayMessenger();
}
}
どんな助けでも大歓迎です。