Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marchbold/27615661363fcbeb30fe to your computer and use it in GitHub Desktop.
Save marchbold/27615661363fcbeb30fe to your computer and use it in GitHub Desktop.
InAppBilling Initialisation
try
{
InAppBilling.init( APPLICATION_KEY );
if (InAppBilling.isSupported)
{
trace( "InAppBilling.service.version = " + InAppBilling.service.version );
// Functionality here
}
else
{
trace( "InAppBilling not supported" );
}
}
catch (e:Error)
{
trace( e );
}
// com.distriqt.InAppBilling
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment