Advertisement
Guest User

Untitled

a guest
May 26th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. try
  2. {
  3. InAppBilling.init( APPLICATION_KEY );
  4. if (InAppBilling.isSupported)
  5. {
  6. trace( "InAppBilling.service.version = " + InAppBilling.service.version );
  7.  
  8. // Functionality here
  9. }
  10. else
  11. {
  12. trace( "InAppBilling not supported" );
  13. }
  14. }
  15. catch (e:Error)
  16. {
  17. trace( e );
  18. }
  19.  
  20. // com.distriqt.InAppBilling
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement