You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After my purchased, I can see a toast "Thanks for your purchased for the play store" and I'm called on my method :
@Override
public boolean validate(String signedData, String signature) {
Log.i(TAG, "validate " + signedData);
// when a purchased need to be checked, just return false if the server side check return false
// TODO add the server side check here
return false; // change it by the server side verification
}
in my logcat I can see
"Billing(16214): Validation failed"
But the purchased wasn't canceled : I received an email from google to thanks me for my purchased.
Note : I don't call any other method of BillingController anywhere
Is it an error from me or from the billing library ?
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
In my billing activity I put :
I don't do anything within my "mBillingObserver"
I want to purchase an item (added in my google play account) :
After my purchased, I can see a toast "Thanks for your purchased for the play store" and I'm called on my method :
in my logcat I can see
"Billing(16214): Validation failed"
But the purchased wasn't canceled : I received an email from google to thanks me for my purchased.
Note : I don't call any other method of BillingController anywhere
Is it an error from me or from the billing library ?
Thanks
The text was updated successfully, but these errors were encountered: