Skip to main content
Question

Disable auto fetching products

  • January 22, 2026
  • 1 reply
  • 12 views

Forum|alt.badge.img+1

Good Evening,

 

I have been working with Revenue cat’s flutter SDK, 

this is my code: 
 

var configuration = PurchasesConfiguration('goog_**********');
configuration.entitlementVerificationMode = EntitlementVerificationMode.informational;
await Purchases.configure(configuration);

 

After configuring the SDK, I think it fetches the products automatically which I don’t want. I have only one product (infinity) which is a non-consumable product. However what I see in logs:

I/[Purchases] - INFO( 3470): ℹ️ Missing productDetails: UnfetchedProduct{productId='infinity', productType='subs', statusCode=3}
I/[Purchases] - INFO( 3470): ℹ️ Product not found: infinity - Product Type: subs, Reason: PRODUCT_NOT_FOUND, Serialized doc ID: 
 

I dont have any subscription product, yet it fetches a subs type product and could not find it.

What is the solution for this error? Or am I making some mistakes.

1 reply

alejandra-wetsch
RevenueCat Staff
Forum|alt.badge.img+6

Hey ​@iamwsumit

Thank you for reaching out!

Thank you for the code snippet and logs shared. Is this the only code you have that interacts with the SDK?

The configure method is not used to fetch products, so we have no configuration to prevent products from getting fetched automatically; instead, products are fetched if the getOfferings or getProducts methods are called. Are you calling any of those? 

To troubleshoot further, could you please share the following:

  • Complete code snippets of your SDK interaction (if more than what was shared is implemented)
  • Full RevenueCat debug logs from the moment the SDK gets configured until you’re seeing the debug logs shared. 
    • If you would like to share them privately, not to share sensitive information, you could DM me or create a support ticket.

Look forward to hearing back from you!

Thanks,