如何修复“离子框架代码推送插件”?

时间:2019-07-19 20:23:36

标签: ionic-framework code-push

  

未捕获(承诺):TypeError:Object(...)不是函数   TypeError:Object(...)不是一个函数       在CodePush.sync(vendor.js:84065)       在MyApp.webpackJsonp.406.MyApp.checkCodePush

我的代码中出现上述错误。我的代码如下。

import { CodePush, InstallMode, SyncStatus } from '@ionic-native/code-push/ngx';
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen, private codePush: CodePush) {
platform.ready().then(() => {
  statusBar.styleDefault();
  splashScreen.hide();
  platform.ready().then(() => {
    statusBar.styleDefault();
    splashScreen.hide();
    this.codePush.sync();
  });
});

0 个答案:

没有答案