Mono IAP signal method definition mismatch. Updated OnPurchaseConsumptionError() method to match with GooglePlayBilling's signal

This commit is contained in:
Shahed Iqbal
2021-08-15 02:48:05 +06:00
parent 89978a7421
commit f08916c90f

View File

@@ -156,7 +156,7 @@ namespace AndroidInAppPurchasesWithCSharp
ShowAlert($"Purchase consumed successfully: {purchaseToken}");
}
private void OnPurchaseConsumptionError(int code, string message)
private void OnPurchaseConsumptionError(int code, string message, string purchaseToken)
{
ShowAlert($"Purchase acknowledgement error {code}: {message}");
}