mirror of https://github.com/M66B/FairEmail.git
Improved IAB error
This commit is contained in:
parent
c9b84689c6
commit
e8969a9a82
|
@ -540,6 +540,9 @@ public class ActivityBilling extends ActivityBase implements /*PurchasesUpdatedL
|
||||||
else {
|
else {
|
||||||
message = getBillingResponseText(result);
|
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();
|
String debug = result.getDebugMessage();
|
||||||
if (!TextUtils.isEmpty(debug))
|
if (!TextUtils.isEmpty(debug))
|
||||||
message += " " + debug;
|
message += " " + debug;
|
||||||
|
|
|
@ -539,6 +539,9 @@ public class ActivityBilling extends ActivityBase implements PurchasesUpdatedLis
|
||||||
else {
|
else {
|
||||||
message = getBillingResponseText(result);
|
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();
|
String debug = result.getDebugMessage();
|
||||||
if (!TextUtils.isEmpty(debug))
|
if (!TextUtils.isEmpty(debug))
|
||||||
message += " " + debug;
|
message += " " + debug;
|
||||||
|
|
Loading…
Reference in New Issue