angular - Ionic 3 with Stripe plugin -


according docs plugin supports 'browser', page hangs when injected stripe:

  1. installed @ionic-native/stripe
  2. imported

import { stripe } '@ionic-native/stripe';

  1. injected in constructor

constructor(private stripe: stripe) {}

after actions above page not loading (and no error in console) via 'ionic serve'

you cannot through ionic-native/stripe. wrapper of native cordova plugin. must use device testing.

stripe doc says javascript api without native plugin. working fine on web apps since no cordova there.

need use cli:

ionic cordova run android --prod --device 

Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -