StoreKit returning 0 products (IAPError: storekit_no_response)

Hi everyone,

I’m facing an issue where StoreKit is returning 0 products from the App Store, even though my auto-renewable subscriptions are approved in App Store Connect.

When calling queryProductDetails using Flutter’s in_app_purchase package (which uses StoreKit under the hood), StoreKit reports success but returns an empty list.

The logs show the following error:

IAPError(code: storekit_no_response, source: app_store, message: "StoreKit: Failed to get response from platform.")

InAppPurchase.isAvailable() returns true, but no product details are received.

Already verified:

• Subscriptions are approved in App Store Connect

• Product identifiers in the app match those in App Store Connect exactly

• In-App Purchase capability is enabled in Xcode

• Paid Applications Agreement, banking, and tax details are active and complete

• Using the latest version of the Flutter in_app_purchase package

StoreKit should normally return the list of available products in the production environment, but it consistently returns an empty array along with the “storekit_no_response” error.

Has anyone else encountered this issue or found any potential causes for StoreKit failing to return products in the production environment? Any insights would be greatly appreciated.

Thank you.

StoreKit returning 0 products (IAPError: storekit_no_response)
 
 
Q