| Bundle bundle = mService.getBuyIntent(3, "com.example.myapp", MY_SKU, ITEM_TYPE_INAPP, developerPayload);
 
 PendingIntent pendingIntent = bundle.getParcelable(RESPONSE_BUY_INTENT);
 if (bundle.getInt(RESPONSE_CODE) == BILLING_RESPONSE_RESULT_OK) {
 // Start purchase flow (this brings up the Google Play UI).
 // Result will be delivered through onActivityResult().
 startIntentSenderForResult(pendingIntent, RC_BUY, new Intent(),
 Integer.valueOf(0), Integer.valueOf(0), Integer.valueOf(0));
 }
 |