Hi all.
There is the possibility to understand if the user has purchased the license from Apple store type like the code we use for Play Store:
Thank you
Marco
There is the possibility to understand if the user has purchased the license from Apple store type like the code we use for Play Store:
B4X:
Sub manager_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))
If p.ProductId = "program_price" And p.PurchaseState = p.STATE_PURCHASED Then
Starter.comprato = "1"
End If
Next
.....
Thank you
Marco