You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of fetchSkuDetails() in V3GoogleInAppBillingService does not handle a scenario in which there are more than 20 products and it throws an exception in executeGetSkuDetails().
The reason for that is the limit in getSkuDetails(), which allows max 20 SKUs to be passed in.
In order for the implementation to handle more, the list of products passed in fetchSkuDetails should be split in chunks of max 20 items and executeGetSkuDetails should be called on each chunk separately.
The text was updated successfully, but these errors were encountered:
The current implementation of fetchSkuDetails() in V3GoogleInAppBillingService does not handle a scenario in which there are more than 20 products and it throws an exception in executeGetSkuDetails().
The reason for that is the limit in getSkuDetails(), which allows max 20 SKUs to be passed in.
In order for the implementation to handle more, the list of products passed in fetchSkuDetails should be split in chunks of max 20 items and executeGetSkuDetails should be called on each chunk separately.
The text was updated successfully, but these errors were encountered: