Post

Replies

Boosts

Views

Activity

Reply to family sharing REVOKE server-to-server notifications
Hi, thank you for your reply. I've double-checked the notifications received over the last two years, but I've only received REFUND and REVOKE notifications for non-consumable in-app purchases. Do you think it's safer not to block content for the end user when the revocation date is missing? If the user regains access, wouldn't they receive a different transaction ID? It seems that REVOKE transactions with the 'FAMILY_SHARED' ownership type don't have a revocation date unless they were revoked because the family member the made the purchase obtained a REFUND. If the user simply exits the family, the date is never included.
Apr ’24
Reply to error in Xcode File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a
Add this at the end of your podfile (+ pod install) to override the iOS Deployment Target of all your pods. Make sure to choose the appropriate minimum deployment target (iOS 11 or above). post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0' end end end
May ’23