My users will redeem promo code via app store (outside my app)
Currently, I am using StoreKit2 to
-
Query
Transaction.currentEntitlements
during app startup -
Keep listening to
Transaction.updates
I was wondering, is that is so, is there any special code required, to handle Promo code redeem from user?
I guess by keep listening to Transaction.updates
, will able to handle such case? But, I am not able to test that, without rolling out my app to production.
Thanks.