Difference between revisions of "GoogleBilling:checkBillingSupported"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
Line 12: Line 12:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
(bool) = GoogleBilling:checkBillingSupported(productType)
 
(bool) = GoogleBilling:checkBillingSupported(productType)
</source>
+
</syntaxhighlight>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''productType''': (string, optional) <translate>The item type. It can be GoogleBilling.INAPP or GoogleBilling.SUBS.</translate> <br/>
 
'''productType''': (string, optional) <translate>The item type. It can be GoogleBilling.INAPP or GoogleBilling.SUBS.</translate> <br/>
 
=== <translate>Return values</translate> ===
 
=== <translate>Return values</translate> ===
 
'''<translate>Returns</translate>''' (bool) <translate>''true'' if in-app billing service is available, ''false'' otherwise.</translate><br/>
 
'''<translate>Returns</translate>''' (bool) <translate>''true'' if in-app billing service is available, ''false'' otherwise.</translate><br/>

Latest revision as of 15:29, 13 July 2023


Available since: Gideros 2012.09
Class: GoogleBilling

Description


This request verifies that the Google Play application supports in-app billing.
You usually send this request when your application first starts up. This request is
useful if you want to enable or disable certain UI features that are relevant only to
in-app billing.

(bool) = GoogleBilling:checkBillingSupported(productType)

Parameters

productType: (string, optional) The item type. It can be GoogleBilling.INAPP or GoogleBilling.SUBS.

Return values

Returns (bool) true if in-app billing service is available, false otherwise.