am eb344a69: Fixing line in Market IAB docs that explains how to bind to the MarketService.

* commit 'eb344a69fa728c010425fb1e18fc8f5774693986':
  Fixing line in Market IAB docs that explains how to bind to the MarketService.
This commit is contained in:
Trevor Johns
2011-03-30 15:26:38 -07:00
committed by Android Git Automerger

View File

@@ -296,7 +296,7 @@ parent.link=index.html
<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 {