in-app-billing Air Extension Application icon

in-app-billing Air Extension 1.1

157.3 KB / 10+ Downloads / Rating 5.0 - 1 reviews


See previous versions

in-app-billing Air Extension, developed and published by myflashlab, has released its latest version, 1.1, on 2023-01-28. This app falls under the Shopping category on the Google Play Store and has achieved over 1000 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

in-app-billing Air Extension APK available on this page is compatible with all Android devices that meet the required specifications (Android 2.2+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: air.com.doitflash.exInAppBilling

Updated: 2 years ago

Developer Name: myflashlab

Category: Shopping

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing in-app-billing Air Extension on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

5.0
Total 1 reviews

Previous Versions

in-app-billing Air Extension 1.1
2023-01-28 / 157.3 KB / Android 2.2+

About this app

This is a demo of how in-app billing extension works in Air apps. using this extension is very easy for an Air developer. download it and check out the buttons. it will initialize the extension and show you how the extension will work in your app.

we have also built a refund method for the extension which you can use optionally and it will let your users fill in a little form and submit it! you will receive an email with the request of your client wanting to refund a specific in-app product.

use it like this:

// initialize it first
_ex = new Google(onInitSuccess, onInitFailed, "PublicKey", true);

// continue with it on a successfull initialization
function onInitSuccess():void
{
// add listeners for the in-app-billing
_ex.addEventListener(GoogleEvent.PURCHASE_STATE_CHANGED, onPurchaseStateChanged);
_ex.addEventListener(GoogleEvent.REQUEST_PURCHASE_RESPONSE, onPurchaseRequestResponse);
_ex.addEventListener(GoogleEvent.REFUND_WINDOW, onRefundWindow);
_ex.addEventListener(GoogleEvent.ERROR, onERROR);

_ex.addEventListener(GoogleEvent.RESULT_OK, onResultOk);
_ex.addEventListener(GoogleEvent.RESULT_USER_CANCELED, onResultUserCanceled);
_ex.addEventListener(GoogleEvent.RESULT_SERVICE_UNAVAILABLE, onResultServiceUnavailable);
_ex.addEventListener(GoogleEvent.RESULT_BILLING_UNAVAILABLE, onResultBillingUnavailable);
_ex.addEventListener(GoogleEvent.RESULT_ITEM_UNAVAILABLE, onResultItemUnavailable);
_ex.addEventListener(GoogleEvent.RESULT_DEVELOPER_ERROR, onResultDeveloperError);
_ex.addEventListener(GoogleEvent.RESULT_ERROR, onResultError);

// request a Fake purchase for developing purpose!
_ex.requestPurchase(Google.FAKE_PURCHASE, "");

// open the refund dialog!
_ex.requestRefund("http://site.com/refund/", "itemId", "itemOrder");
}

there are many other methods for you to work with the extension.
please read here: http://myappsnippet.com/in-app-billing-adobe-air-native-extension-refund-manager/

App Permissions

Allows using PowerManager WakeLocks to keep processor from sleeping or screen from dimming.
Allows applications to open network sockets.
Allows applications to access information about networks.
Allows access to the vibrator.