StoreKit v2: autoRenewStatus returns 0 right after purchase on iOS 26.1

Hi everyone,

I’m implementing subscriptions using StoreKit v2, and I’ve noticed a behavior change starting with iOS 26.1. I’d like to ask if anyone else has experienced the same issue.

■ Issue
Immediately after purchasing a new subscription, the value of auto_renew_status (or autoRenewStatus) returned in the receipt is 0 (auto-renew OFF). This issue occurs on iOS 26.1. On iOS 26.0 and earlier, the same parameter returned 1 (auto-renew ON) right after purchase.

Sometimes, after executing a “restore” operation, the value changes to 1 later.

Since we’ve been using this parameter to determine whether a user’s subscription is active or not, the current behavior is causing some difficulties on our end.

■ Questions

  1. Has anyone else observed this issue (where autoRenewStatus is 0 immediately after purchase on iOS 26.1 or later)?
  2. How are you handling or working around this behavior in your implementation?
  3. If autoRenewStatus is unreliable, we’re considering determining the subscription state based on receipt fields instead.

Would this approach be reasonable?

  1. "status" is 1 (indicates active subscription)
  2. "expire_time" is in the future
  3. "deleted_at" is null

If anyone has encountered the same behavior or knows of any Apple-recommended implementation approach, I’d really appreciate your insights.

Thank you! 🙏

StoreKit v2: autoRenewStatus returns 0 right after purchase on iOS 26.1
 
 
Q