Arthur Kim

Results 8 comments of Arthur Kim

Is it may related to this? https://stackoverflow.com/questions/75383552/notification-not-being-shown-in-android-13

Found the issue, upgrading from RN 0.69 to 0.72 changed the Android API level from 31 to 33, and 33 requires the POST_NOTIFICATIONS permission. https://developer.android.com/develop/ui/views/notifications/notification-permission I've added this on the...

So.. Don't we need any additional verification process right? It is already verified if it returns kind of this result? So now I just need to implement some App Store...

Oh I got it, I need both of Server Side and Application Side. Just Storekit2 is more simple than Storekit1. So I need all of App Store Server API, App...

Just Apple removed this process. application side verification process. https://react-native-iap.dooboolab.com/docs/api-reference/methods/ios/validate-receipt-ios.

verificationResponseIOS is JWS. It is Json Web Token. Header.Payload.Signiture So... That's it. verify through jwt util and it is right JWT, then it means validated. So we can convince this...

similar to this but not -1 , in this case 0. https://github.com/facebook/react-native/issues/36850

I was able to prevent errors by changing the value of sections through InteractionManager.runAfterInteractions so that it is performed after the interaction ends. Is there a way to slow down...