Christian Giordano
Christian Giordano
Should [FontFaceObserver](https://github.com/bramstein/fontfaceobserver) be used?
This seems to work: ``` componentDidUpdate(prevProps, prevState) { if (prevState.activeFontFamily !== this.state.activeFontFamily) { const font = new FontFaceObserver(this.state.activeFontFamily); font.load().then(() => { console.log(`${this.state.activeFontFamily} has loaded`); }, () => { console.log(`${this.state.activeFontFamily} is...
I actually have only problems with Symlinks when building for deployment: https://github.com/facebookincubator/create-react-app/issues/3650 On dev it works well.
Seems to work not passing any context and analyzer, but these get created for apparently no reason.
Also 1.1.2 is broken.
Me too had problems because my hosting supports SFTP instead of FPTS. I switched to FTP only and works.
@mrtksn can you please expand on your solution? When do you check if the user can make payment? Before pulling the pricing? In which call do you call production first...
The second part is clear, despite I thought that SwiftyStoreKit was already taking care of the sandbox error. Check [AppleReceiptValidator](https://github.com/bizz84/SwiftyStoreKit/blob/master/SwiftyStoreKit/AppleReceiptValidator.swift) line 94. But the first part, SKPaymentQueue.canMakePayments(), what's the benefit...
In my case the reviewer got the error _"The purchase identifier was invalid"_ and looks like they failed to pull the product info. So, it seems the error happened before...
Maybe it was a [random Sandbox error](https://github.com/bizz84/SwiftyStoreKit/issues/154), what a luck!