In In-App Billing v3 library I have this method "GetInventoryInformation" an I can get the information the price using this code:
How I can do this using the new library GooglePlayBilling?
Thanks in advance for any tip.
B4X:
Sub billman3_InventoryCompleted (Success As Boolean, Products As List)
If Success Then
For Each sk As SkuDetails In Products
Dim parser As JSONParser
Dim s As String = sk.toString
Dim i As Int = s.IndexOf(":")
s = s.Substring(i + 1)
parser.Initialize(s)
Dim root As Map = parser.NextObject
price = root.Get("price")
Next
End If
End Sub
How I can do this using the new library GooglePlayBilling?
Thanks in advance for any tip.