Masahiko Sakakibara

Results 170 comments of Masahiko Sakakibara

Try this to see if it fixes it. If you get the same error with this, it seems to be returning multiple results. https://github.com/capacitor-community/stripe/pull/426

This may an issue that can be resolved with CSS alone. Please try the following. ``` .ion-page:has(ion-header.header-translucent) ion-content:has(.ion-content-scroll-host) { --padding-top: calc(var(--offset-top) * -1); } ```

Did you run `StripeTerminal.disconnectReader()` after first payment successful? ex) https://github.com/capacitor-community/stripe/blob/main/demo/angular/src/app/terminal/terminal.page.ts#L345C11-L345C44

Note) In some cases, it may be more convenient to remain connected to the READER when making successive payments. For this reason, automatic disconnection is not performed.

I have just tried it and it works fine at iOS. ```ts (async ()=> { await StripeTerminal.initialize({ tokenProviderEndpoint: 'https://example.com/token', isTest: true }) const { readers } = await StripeTerminal.discoverReaders({ type:...

Thanks for doing the research. Perhaps I couldn't reproduce it because I checked on a different iOS. I will close it as it was not a plugin issue.

Sorry for the delay. I'd like you to check if it's been resolved in v7.2.0, which we released today. Thanks!

I’m not aware of a way to disable AdMob only on the simulator, but in my environment it works fine even on the simulator without crashing. Could you please try...

@kyleabens Thanks for checking — from what I can see, it works correctly in the demo environment 👍 Have you checked Android Logcat? There might be some hints there that...

Currently, we don’t provide a BOTTOM_LEFT option. The available positions are only TOP_CENTER, CENTER, or BOTTOM_CENTER. Since the banner takes up 100% of the width in landscape mode, we haven’t...