summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTrevor Johns <trevorjohns@google.com>2011-03-30 11:30:09 -0700
committerTrevor Johns <trevorjohns@google.com>2011-03-30 14:19:40 -0700
commiteb344a69fa728c010425fb1e18fc8f5774693986 (patch)
treeef7a62c0fd0c4ff60ba1da19cc5f7a76062d1678 /docs
parentb42e83b1eccfd1fa1e02cd0c30edfc06e05de995 (diff)
downloadframeworks_base-eb344a69fa728c010425fb1e18fc8f5774693986.zip
frameworks_base-eb344a69fa728c010425fb1e18fc8f5774693986.tar.gz
frameworks_base-eb344a69fa728c010425fb1e18fc8f5774693986.tar.bz2
Fixing line in Market IAB docs that explains how to bind to the
MarketService. We use the IMarketBillingService, which is incorrect. It should be "com.android.vending.billing.MarketBillingService.BIND".
Diffstat (limited to 'docs')
-rwxr-xr-xdocs/html/guide/market/billing/billing_integrate.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/market/billing/billing_integrate.jd b/docs/html/guide/market/billing/billing_integrate.jd
index 26bda66..56e471e 100755
--- a/docs/html/guide/market/billing/billing_integrate.jd
+++ b/docs/html/guide/market/billing/billing_integrate.jd
@@ -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 {