Example usage for com.badlogic.gdx.pay.android.googleplay GoogleBillingConstants INAPP_PURCHASE_DATA

List of usage examples for com.badlogic.gdx.pay.android.googleplay GoogleBillingConstants INAPP_PURCHASE_DATA

Introduction

In this page you can find the example usage for com.badlogic.gdx.pay.android.googleplay GoogleBillingConstants INAPP_PURCHASE_DATA.

Prototype

String INAPP_PURCHASE_DATA

To view the source code for com.badlogic.gdx.pay.android.googleplay GoogleBillingConstants INAPP_PURCHASE_DATA.

Click Source Link

Usage

From source file:com.badlogic.gdx.pay.android.googleplay.testdata.PurchaseRequestActivityResultObjectMother.java

public static Intent activityResultPurchaseFullEditionSuccess() {
    Intent intent = new Intent();
    intent.putExtra(GoogleBillingConstants.INAPP_PURCHASE_DATA, makeInAppPurchaseJsonData());
    return intent;
}