From 456efcd62a4dba97e194a320c009159464c64432 Mon Sep 17 00:00:00 2001 From: Akshat Tiwari <51470769+akshaaatt@users.noreply.github.com> Date: Sat, 10 Apr 2021 01:22:36 +0530 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 15e3ddd..2dc7e61 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,9 @@ dependencies { ```kotlin iapConnector = IapConnector(this, "...") - .setNonConsumableIds(listOf("id1", "id2", "id3")) /*pass the list of InAppProduct IDs (Consumables & Non-Consumables)*/ + .setNonConsumableIds(listOf("id1", "id2", "id3")) /*pass the list of Non-Consumable Product IDs*/ .setSubscriptionIds(listOf("subId1", "subId2")) /*pass the list of Subscription IDs*/ - .setConsumableProductIds(listOf("id4", "id5")) /*pass the list of consumable product IDs (Subset of first InAppProductIds list)*/ + .setConsumableProductIds(listOf("id4", "id5")) /*pass the list of Consumable Product IDs*/ .autoAcknowledge() /*to enable auto acknowledgement*/ .connect() ```