I'm using MKStoreKit 4.0 to implement auto-renewable subscriptions in my app and I am able to purchase subscriptions fine but can't get auto-renewal to be successfully tested. This is what I'm doing:
I initialize MKStoreManager at the start of the app.
Whenever the the user is about to access a feature that requires a subscription I call the
isSubscriptionActive:
method for the corresponding subscription type.
My questions are:
1) Is this a valid way to use MKStoreKit for auto-renewables? (If not how should I do it?) 2) Has anyone successfully used auto-renewable subscriptions with MKSToreKit and if so how?
Thanks in advance for any help.
P.S. - I've thought of using restore purchases but that would require a password authentication from the user and showing that every time the app checks for subscription status would defeat the purpose of auto-renewable subscriptions.