Android Question Google Play Billing - w

DOFER

New Member
Hello, everyone. I have a question about BILLING. I am in closed testing and I can list my subscriptions and make purchases... but...

- While in testing, am I supposed to see the Google Play window to add payment methods? Right now, it's not showing up...

- Will that subscription be saved so I can check the code to see if the user is already subscribed (while in testing)?

- Or will all of this work when it's a version already in production?



Thank you.



comprar la suscripcion:
' Inicia la compra asíncrona
        Wait For (ComprarProductoSubs(Array As String(sup.ProductId), so.OfferToken)) Complete (res As BillingResult)

        Log("Resultado compra: " & res.ResponseCode)
        
        ' Comprueba resultado
        If res.ResponseCode = br.CODE_OK Then
            ToastMessageShow("Compra realizada correctamente", True)
        Else
            ToastMessageShow("Compra cancelada o error: " & gpb.ReturnResponseMessage(res.ResponseCode), True)
        End If
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
While in testing, am I supposed to see the Google Play window to add payment methods? Right now, it's not showing up...
You should see a popup window saying that the payment was successful. Nothing more.

- Will that subscription be saved so I can check the code to see if the user is already subscribed (while in testing)?
I don't think so.

- Or will all of this work when it's a version already in production?
If implemented correctly...
 
Upvote 0
Top