Android Question inApp purchase - Request Payment Value

aaronk

Well-Known Member
Licensed User
Longtime User
Hi,

I am using inAppBilling3, when using Requesting payments (manage.RequestPayment(item,value) what is the value used for ?

I am guessing I can pass anything as the value, but is there a way in getting this value later on ?

upload_2017-7-1_18-10-47.png
 

aaronk

Well-Known Member
Licensed User
Longtime User
I just tried:

B4X:
Sub manager_PurchaseCompleted (Success As Boolean, Product As Purchase)
      
    If Success Then
        Log("Product.DeveloperPayload = " & Product.DeveloperPayload)
    End If
End Sub

It then logs the following after making the payment:

Product.DeveloperPayload =

I guess I am doing it wrong since it's returning nothing or maybe this isn't how to get this value ?
 
Upvote 0
Top