Today my app crashed with IAB Helper is not setup.
This is really strange.
Because I save the Supported flag from my call to Billing Manager Supported
I test this flag before trying to do anything with Billing Manager.
Is it possible to get
Is it possible for me to get a Supported flag as True and then when I actually go to do something with BillingManager for it not to be supported any more?
Because I save the flag
Then I try to getownedproducts and crash on IAB Helper is not setup.
So if the flag I got said supported then where did it go....
BobVal
This is really strange.
Because I save the Supported flag from my call to Billing Manager Supported
I test this flag before trying to do anything with Billing Manager.
Is it possible to get
B4X:
gBillingManager.Initialize("BillingManager", gBMK)
Wait For BillingManager_BillingSupported(Supported As Boolean, Message As String)
gBillingManagerSupported = Supported
gBillingManagerMessage = Message
Is it possible for me to get a Supported flag as True and then when I actually go to do something with BillingManager for it not to be supported any more?
Because I save the flag
B4X:
Do some startup tasks - nothing to do with IAB
... Open database, ...
Then I try to getownedproducts and crash on IAB Helper is not setup.
So if the flag I got said supported then where did it go....
B4X:
If gBillingManagerSupported Then
gBillingManager.GetOwnedProducts
end if
BobVal