D
Deleted member 103
Guest
Hi,
a customer tells me he does not find the in-app purchases in the app menu.
In the app I check if the function "MyStore.CanMakePayments" is true and if yes, then I add the menu option.
What could it be that does not see this option?
Can any settings on the iPhone be guilty?
He writes that he only bought an app for testing without any problems.
a customer tells me he does not find the in-app purchases in the app menu.
In the app I check if the function "MyStore.CanMakePayments" is true and if yes, then I add the menu option.
What could it be that does not see this option?
Can any settings on the iPhone be guilty?
He writes that he only bought an app for testing without any problems.
B4X:
Dim MyStore As Store 'declare it in Process Globals
...
MyStore.Initialize("MyStore")
If MyStore.CanMakePayments = true Then
' Here I add the menu options
End If