All Projects → lh4111 → ionic-jpush

lh4111 / ionic-jpush

Licence: other
基于ionic3 和 ionic-native3 的极光推送封装

Projects that are alternatives of or similar to ionic-jpush

ionic-uuchat
基于ionic3,angular4的实时聊天app,兼容web端。该项目只是前端部分,所有数据需要请求后端服务器,需要配套express-uuchat-api使用。
Stars: ✭ 14 (-69.57%)
Mutual labels:  ionic2, ionic3
cordova-plugin-today-widget
Add a today widget app extension target to your cordova project.
Stars: ✭ 51 (+10.87%)
Mutual labels:  ionic2, ionic3
sm-coal-app
这是一个使用Ionic2开发的集数据展示,交易,交流于一体的APP
Stars: ✭ 21 (-54.35%)
Mutual labels:  ionic2, ionic3
Dianoia-app
Mobile (Ionic 3 - Angular 4) app about non-pharmaceutical activities and information for people with dementia.
Stars: ✭ 13 (-71.74%)
Mutual labels:  ionic2, ionic3
angular-progress-bar
This component allow you to easy incorporate progress-bar to angular/ionic project, providing binding and color options
Stars: ✭ 26 (-43.48%)
Mutual labels:  ionic2, ionic3
ionic3-image-handling
In this ionic tutorial you will learn how to access the image gallery and take pictures from an ionic app. Also we will show you how to add a image cropper. This ionic tutorial includes a working ionic app example you can reuse for your needs.
Stars: ✭ 35 (-23.91%)
Mutual labels:  ionic2, ionic3
ionic-workflow-guide
Create a full and powerful worflow with Ionic (Unit Testing, Environment variables, Automatic documentation, Production App Server, Automatic deployment)
Stars: ✭ 46 (+0%)
Mutual labels:  ionic2, ionic3
Wooionic3
An eCommerce App for WooCommerce stores using Ionic 3.
Stars: ✭ 208 (+352.17%)
Mutual labels:  ionic2, ionic3
ionicfirebasecrud
An example of crud with Firebase and Ionic
Stars: ✭ 15 (-67.39%)
Mutual labels:  ionic2, ionic3
ionic-hockeyapp
Need HockeyApp in your Ionic application, add this package!
Stars: ✭ 19 (-58.7%)
Mutual labels:  ionic2, ionic3
ionic-uber-clone
Ionic 4 Taxi Booking script
Stars: ✭ 34 (-26.09%)
Mutual labels:  ionic2, ionic3
ionicfirebaseauth
Exemplo de alguns tipos de autenticação com Ionic 2 e Firebase
Stars: ✭ 18 (-60.87%)
Mutual labels:  ionic2, ionic3
ionic3
This repository contains complete source code for Ionic 3 tutorial from https://ampersandacademy.com/tutorials/ionic-framework-3. I will try many Ionic 3 specific scripts and will write them as separate tutorial. You can follow this repo to get more tested and working script for the Ionic 3.
Stars: ✭ 21 (-54.35%)
Mutual labels:  ionic2, ionic3
todo-list
TodoList using Ionic2/3 & Firebase: * PWA * SSO Google plus. * Share list via QRcode. * Upload image from Camera or Storage. * Speech Recognition.
Stars: ✭ 18 (-60.87%)
Mutual labels:  ionic2, ionic3
ionic2-PreDB
Simple Ionic 2+ with pre-populated database starter project
Stars: ✭ 14 (-69.57%)
Mutual labels:  ionic2, ionic3
ionic-3-video-calling-using-webrtc
This is demo code of how to implement video calling in ionic 3 using webrtc
Stars: ✭ 58 (+26.09%)
Mutual labels:  ionic2, ionic3
Ionic2 Pokedex
🎮 Pokédex sample app developed with Ionic 2, Angular 2 and Apache Cordova. Using Pokéapi as source for data.
Stars: ✭ 143 (+210.87%)
Mutual labels:  ionic2, ionic3
Ionic Gallery Modal
Ionic Gallery Modal (to show all your photos)
Stars: ✭ 170 (+269.57%)
Mutual labels:  ionic2, ionic3
ionic-socialsharing-with-deeplinking-example
Ionic Social Sharing and Deep Linking example app. Complete Ionic Tutorial with free example app! Built for Ionic 3.
Stars: ✭ 16 (-65.22%)
Mutual labels:  ionic2, ionic3
ionic3-awesome
😃 ionic3自定义组件及常用例子 演示地址
Stars: ✭ 95 (+106.52%)
Mutual labels:  ionic2, ionic3

ionic3-jpush

npm

基于ionic3 和 ionic-native3 的极光推送封装

更新说明

官方phonegap插件jpush-phonegap-plugin更新了Api。 ionic3-jpush 1.2.0 需要jpush-phonegap-plugin >= 3.2.4。

若你的项目适用jpush-phonegap-plugin < 3.24 请使用 ionic3-jpush 1.1.0 npm i [email protected] --save

以下Api参数发生变化

Alias API

  • setAlias
  • deleteAlias
  • getAlias

Tag API

  • setTags
  • addTags
  • deleteTags
  • cleanTags
  • getAllTags
  • checkTagBindState

如何使用

  1. 安装官方Cordova插件
ionic plugin add jpush-phonegap-plugin --variable APP_KEY=your_jpush_appkey
  1. 安装模块ionic3-jpush
npm i ionic3-jpush -S
  1. app.module.ts中引入,并加入到@NgModuleproviders
import { JPush } from 'ionic3-jpush';

@NgModule({
  ...
  providers: [ JPush ],
})
export class AppModule { }

  1. 在Component中调用方法
//...
import { JPush } from 'ionic3-jpush';

@Component({
    template: `
        <ion-nav [root]="rootPage"></ion-nav>`
})
export class MyApp {

  constructor (public jPush: JPush){

    this.jPush.getRegistrationID().then(regid => {
      console.log(regid)
    })

  }
}

Api说明

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].