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.
