Difference between revisions of "GoogleBilling:checkBillingSupported"

From GiderosMobile
Line 2: Line 2:
 
'''Available since:''' Gideros 2012.09<br/>
 
'''Available since:''' Gideros 2012.09<br/>
 
=== Description ===
 
=== Description ===
<br />
+
<translate><br />
 
This request verifies that the Google Play application supports in-app billing.<br />
 
This request verifies that the Google Play application supports in-app billing.<br />
 
You usually send this request when your application first starts up. This request is<br />
 
You usually send this request when your application first starts up. This request is<br />
 
useful if you want to enable or disable certain UI features that are relevant only to<br />
 
useful if you want to enable or disable certain UI features that are relevant only to<br />
 
in-app billing.<br />
 
in-app billing.<br />
<br />
+
<br /></translate>
 
<source lang="lua">
 
<source lang="lua">
 
(bool) = GoogleBilling:checkBillingSupported(productType)
 
(bool) = GoogleBilling:checkBillingSupported(productType)
 
</source>
 
</source>
 
=== Parameters ===
 
=== Parameters ===
'''productType''': (string, optional) The item type. It can be GoogleBilling.INAPP or GoogleBilling.SUBS. <br/>
+
'''productType''': (string, optional) <translate>The item type. It can be GoogleBilling.INAPP or GoogleBilling.SUBS.</translate> <br/>
 
=== Return values ===
 
=== Return values ===
'''Returns''' (bool) `true` if in-app billing service is available, `false` otherwise.<br/>
+
'''Returns''' (bool) <translate>[[[true` if in-app billing service is available, `false]]] otherwise.</translate><br/>

Revision as of 14:38, 23 August 2018

Available since: Gideros 2012.09

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.