无法在ionic 3项目的模块中导入google plus插件

时间:2018-12-17 06:49:26

标签: angular cordova ionic-framework ionic3 google-plus

我正在使用Hybrid开发ionic-3应用。我在app.module.ts和page.ts中导入google plus插件时遇到麻烦。 我已经从下面的命令成功安装了Google plus插件,但第一次遇到此问题。

  

$ ionic cordova插件添加cordova-plugin-googleplus-变量REVERSED_CLIENT_ID = myreversedclientid

     

$ npm install --save @ ionic-native / google-plus

我的导入错误在下面的图像中

  

App.module.ts

enter image description here

  

Page.ts

enter image description here

  

离子信息

cli软件包:(C:\ Users \ sandip \ AppData \ Roaming \ npm \ node_modules)

@ionic/cli-utils  : 1.19.2
ionic (Ionic CLI) : 3.20.0

全局软件包:

cordova (Cordova CLI) : 6.4.0

本地软件包:

@ionic/app-scripts : 3.2.1
Cordova Platforms  : none
Ionic Framework    : ionic-angular 3.9.2

系统:

Node : v8.1.4
npm  : 6.5.0
OS   : Windows 8

环境变量:

ANDROID_HOME : E:\newsdk\newsdk\tools;E:\newsdk\newsdk\platform-tools;E:\newsdk\newsdk\build-tools

其他:

backend : pro

我希望这些信息足以理解我的问题。

1 个答案:

答案 0 :(得分:1)

尝试将其导入您正在使用的模块中:

import { GooglePlus } from '@ionic-native/google-plus/ngx'

@ngModule({
   ...
   providers: [
      ...
      GooglePlus
    ]
})