Merge "Fixing line in Market IAB docs that explains how to bind to the MarketService." into gingerbread

This commit is contained in:
Trevor Johns
2011-03-30 13:50:40 -07:00
committed by Android (Google) Code Review

View File

@@ -223,7 +223,7 @@ Billing package contains the sample application and the AIDL file. </div>
<pre>
try {
boolean bindResult = mContext.bindService(
new Intent(IMarketBillingService.class.getName()), this, Context.BIND_AUTO_CREATE);
new Intent("com.android.vending.billing.MarketBillingService.BIND"), this, Context.BIND_AUTO_CREATE);
if (bindResult) {
Log.i(TAG, "Service bind successful.");
} else {