iOS Question Question about "MyStore.CanMakePayments"

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.

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
 
D

Deleted member 103

Guest
What do you mean Erel, I should display a message if the user is not allowed to make a purchase ?
 
Upvote 0

tufanv

Expert
Licensed User
Longtime User
I don't know if a solution can be provided because maybe the user's country is not allowed to make payments and you can't do anything about that or user's parents not allowing their childeren to make payments which you can'^t do anything again.
 
Upvote 0
D

Deleted member 103

Guest
I don't know if a solution can be provided because maybe the user's country is not allowed to make payments and you can't do anything about that or user's parents not allowing their childeren to make payments which you can'^t do anything again.
In my case the user is an adult who does not know what to do.
Maybe he has modified the settings himself, and now he does not show anymore.
 
Upvote 0
Top