Improved IAB error

pull/199/head
M66B 4 years ago
parent c9b84689c6
commit e8969a9a82

@ -540,6 +540,9 @@ public class ActivityBilling extends ActivityBase implements /*PurchasesUpdatedL
else {
message = getBillingResponseText(result);
if (result.getResponseCode() == BillingClient.BillingResponseCode.BILLING_UNAVAILABLE)
message += " Is the Play Store app logged into the account used to install the app?";
String debug = result.getDebugMessage();
if (!TextUtils.isEmpty(debug))
message += " " + debug;

@ -539,6 +539,9 @@ public class ActivityBilling extends ActivityBase implements PurchasesUpdatedLis
else {
message = getBillingResponseText(result);
if (result.getResponseCode() == BillingClient.BillingResponseCode.BILLING_UNAVAILABLE)
message += " Is the Play Store app logged into the account used to install the app?";
String debug = result.getDebugMessage();
if (!TextUtils.isEmpty(debug))
message += " " + debug;

Loading…
Cancel
Save