diff --git a/extension-iap/src/java/com/defold/iap/IapGooglePlay.java b/extension-iap/src/java/com/defold/iap/IapGooglePlay.java index c25871c..c9992c5 100644 --- a/extension-iap/src/java/com/defold/iap/IapGooglePlay.java +++ b/extension-iap/src/java/com/defold/iap/IapGooglePlay.java @@ -142,6 +142,8 @@ public class IapGooglePlay implements PurchasesUpdatedListener { JSONObject p = new JSONObject(); try { p.put("ident", productDetails.getProductId()); + p.put("title", productDetails.getTitle()); + p.put("description", productDetails.getDescription()); if (productDetails.getProductType().equals(ProductType.INAPP)) { OneTimePurchaseOfferDetails offerDetails = productDetails.getOneTimePurchaseOfferDetails(); p.put("price_string", offerDetails.getFormattedPrice());