android 的亚马逊应用内购买超过一件消耗品

More than one consumable items in Amazon in app purchase for android

我正在我的 android 应用程序中实施亚马逊应用内购买。我已经下载了他们的 sdk 并从该 sdk 获得了应用内购买的示例项目。我在我的亚马逊帐户中创建了两个要购买的商品,并从那里获得了 json 文件。 现在 json 文件中有两个项目。它的 json 就像那样 json(我从亚马逊上删除了一些实际值)。

{"com.remove.adis.snt":{
"smallIconUrl":"",
"title":"Remove Ads",
"price":1.49,
"itemType":"CONSUMABLE",
"description":"Are you annoyed of ads!!!\r\nHere is the solution.Please buy this feature to remove ads from your app."},
"com.premium.doofun.snt":{
"smallIconUrl":"",
"title":"Premium Sounds",
"price":1.99,
"itemType":"CONSUMABLE",
"description":"Get More Sounds of interesting Categories like Action, TV, Entertainment, Love, Movies etc. to have more fun!"}

} 

现在的问题是它的应用程序内仅适用于一项。如果我继续将这两个项目保留在我的 json 文件中,它将不起作用。我需要删除这两个中的一个才能使其工作。我被困在这里,我也无法从 api 得到这个想法。请帮助,任何帮助将不胜感激。谢谢:)

您发布的 JSON 无效。它在最后一个子对象之后有一个额外的逗号。如果这只是一个发布错误,那就不知道了。