summaryrefslogtreecommitdiff
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 11:30:09 -0700
commit428b85e03ea4240cf7dd9d023206f1c20b9b8e5e (patch)
tree2afef0c6d3851a57fd7a93ac1e1c7b8c1388a82d
parent8b312c6ca1c3f6dc4bec0c7d45bc9509afef4984 (diff)
downloadbase-428b85e03ea4240cf7dd9d023206f1c20b9b8e5e.tar.gz
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". Change-Id: Ie361e58cea8aca6d70bd48bce062ca8d062281ee
-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 0f081a58dafc..6e40f3297555 100755
--- a/docs/html/guide/market/billing/billing_integrate.jd
+++ b/docs/html/guide/market/billing/billing_integrate.jd
@@ -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 {