Browse Source

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

Shahed Iqbal 4 years ago
parent
commit
f08916c90f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mono/android_iap/Main.cs

+ 1 - 1
mono/android_iap/Main.cs

@@ -156,7 +156,7 @@ namespace AndroidInAppPurchasesWithCSharp
             ShowAlert($"Purchase consumed successfully: {purchaseToken}");
             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}");
             ShowAlert($"Purchase acknowledgement error {code}: {message}");
         }
         }