예제 #1
0
        void OnPurchaseConsumedError(int responseCode, string token)
        {
            var res = InAppPurchaseResponse.ByCode(responseCode);

            SetErrorAndReset(new PurchaseError($"Cannot Consume the purchase: {res.Description}"));
        }
예제 #2
0
        void OnProductPurchasedError(int responseCode, string sku)
        {
            var res = InAppPurchaseResponse.ByCode(responseCode);

            SetErrorAndReset(new PurchaseError($"Cannot Purchase: {res.Description}"));
        }