angular - Ionic 3 with Stripe plugin -
according docs plugin supports 'browser', page hangs when injected stripe:
- installed @ionic-native/stripe
- imported
import { stripe } '@ionic-native/stripe';
- 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
Post a Comment