summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Trevor Johns <trevorjohns@google.com> 2011-03-30 15:30:56 -0700
committer Android Git Automerger <android-git-automerger@android.com> 2011-03-30 15:30:56 -0700
commitf9784a5051a4c202223f2a777e37a00af23818c8 (patch)
tree6528d85d08e5b3e133b2430f8824660e06ebed7e
parent399792b83174a835840a4f47adcd34aed4e0b9ba (diff)
parentf829305f8706e32fa103e5ee9eef7c595642d1a2 (diff)
am f829305f: am e1cc88cc: am eb344a69: Fixing line in Market IAB docs that explains how to bind to the MarketService.
* commit 'f829305f8706e32fa103e5ee9eef7c595642d1a2': Fixing line in Market IAB docs that explains how to bind to the MarketService.
-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 26bda66ceea5..56e471e50635 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 {