forked from organicmaps/organicmaps
[android] Generalized 'isBillingSupported' method
This commit is contained in:
parent
691257262e
commit
08938ed174
1 changed files with 9 additions and 4 deletions
|
@ -90,7 +90,7 @@ class PlayStoreBillingManager implements BillingManager<PlayStoreBillingCallback
|
|||
{
|
||||
if (!isBillingSupported())
|
||||
{
|
||||
LOGGER.w(TAG, "Subscription is not supported by this device!");
|
||||
LOGGER.w(TAG, "Purchase type '" + mProductType + "' is not supported by this device!");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -101,9 +101,14 @@ class PlayStoreBillingManager implements BillingManager<PlayStoreBillingCallback
|
|||
@Override
|
||||
public boolean isBillingSupported()
|
||||
{
|
||||
@BillingResponse
|
||||
int result = getClientOrThrow().isFeatureSupported(BillingClient.FeatureType.SUBSCRIPTIONS);
|
||||
return result != BillingResponse.FEATURE_NOT_SUPPORTED;
|
||||
if (BillingClient.SkuType.SUBS.equals(mProductType))
|
||||
{
|
||||
@BillingResponse
|
||||
int result = getClientOrThrow().isFeatureSupported(BillingClient.FeatureType.SUBSCRIPTIONS);
|
||||
return result != BillingResponse.FEATURE_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue