Hi there,
i´ve some problems with InApp Billing.
I can buy Items.
But if i cancel an Item over the merchant console, the item is still available in the app.
After i read http://developer.android.com/google/play/billing/billing_testing.html#
and http://developer.android.com/google/play/billing/v2/api.html#billing-action-notify
i think somewhat is not fire in the library, or i forgot something in my app. But what ?
-----------
Eumel
i´ve some problems with InApp Billing.
I can buy Items.
But if i cancel an Item over the merchant console, the item is still available in the app.
After i read http://developer.android.com/google/play/billing/billing_testing.html#
and http://developer.android.com/google/play/billing/v2/api.html#billing-action-notify
i think somewhat is not fire in the library, or i forgot something in my app. But what ?
B4X:
Sub billingmanager_OwnedProducts (Success As Boolean, purchases As Map)
Log(Success)
If Success Then
Log(purchases)
For Each p As Purchase In purchases.Values
Log(p.ProductId & ", Purchased? " & (p.PurchaseState = p.STATE_PURCHASED)) '<<< always true
Log(p.ProductId & ", Canceled? " & (p.PurchaseState = p.STATE_CANCELED)) '<<< always false
Log(p.ProductId & ", Refunded? " & (p.PurchaseState = p.STATE_REFUNDED)) '<<< always false
Next
End If
End Sub
-----------
Eumel