ionic3 集成极光推送

不知道为什么,最新版本的jpush,注册不上用户,用的是3.3.4的版本,首先注册极光。

第一步,添加android platform,

cordova platform add android

第二步,回退jcore插件

cordova plugin add [email protected] --save

第三步,添加极光插件

cordova plugin add [email protected] --variable APP_KEY=your_jpush_appkey

npm install --save @jiguang-ionic/jpush

第四步,在app.module.ts添加JPush class

在 *app.module.ts* 中增加:

import { JPush } from '@jiguang-ionic/jpush';

providers: [

JPush,

]


第五步,初始化极光插件

在home,或者app.compent.ts中添加jpush,调用jpush.init()方法.


你可能感兴趣的:(ionic3 集成极光推送)