PurchaseClient
public abstract class BillingClient extends Object
java.lang.Object
↳ com.gaa.sdk.iap.PurchaseClientclass YourPurchaseManager implements PurchaseClientStateListener {
private PurchaseClient mPurchaseClient;
public YourPurchaseManager() {
mPurchaseClient = PurchaseClient.newBuilder(activity)
.setBase64PublicKey(/* your public key */)
.setListener(this)
.build();
}
...
}Summary
Nested classes
Public methods
newBuilder
isReady
Returns:
getConnectionState
Returns:
isFeatureSupported
startConnection
endConnection
launchUpdateOrInstallFlow
launchPurchaseFlow
consumeAsync
acknowledgeAsync
queryPurchasesAsync
queryProductDetailsAsync
manageRecurringProductAsync
launchLoginFlowAsync
launchManageSubscription
getStoreInfoAsync
Last updated

