Which two of the following are required to add a list of in-app products on Google Play? (Choose two)
Assuming
installation path for Google Play Billing Library?
What does the following code snippet do?
iabHelper.startSetup(new
IabHelper.OnIabSetupFinishedListener() {
public void onIabSetupFinished(IabResult result)
{
if (!result.isSuccess()) {
......
} else {
......
}
}
});
What does the following code snippet do?
mHelper.launchPurchaseFlow(this, ITEM_SKU, 10001,
mPurchaseFinishedListener, "");
Upon completion of a purchase using Google Play in-app billing, the result is returned to your activity. Which method you should override to handle the returned result?
Currently there are no comments in this discussion, be the first to comment!