我正在使用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
Page.ts
离子信息
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
我希望这些信息足以理解我的问题。
答案 0 :(得分:1)
尝试将其导入您正在使用的模块中:
import { GooglePlus } from '@ionic-native/google-plus/ngx'
@ngModule({
...
providers: [
...
GooglePlus
]
})