Reputation: 53
I am trying to develop an android app with in-app billing. Everything seems to be working, except I am not getting back my developer payload.
This is how I am setting the data:
protected void purchaseItemSubs(String sku, String data) {
billingHelper.launchSubscriptionPurchaseFlow(this, sku, 123, this, data);
}
Upvotes: 1
Views: 69
Reputation: 53
It does work in test. The reason I was not seeing anything was because I had called this function before with the payload being empty and Google associated that empty field with my test account till the next subscription cycle.
Upvotes: 1