summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrevor Johns <trevorjohns@google.com>2011-03-30 15:26:38 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2011-03-30 15:26:38 -0700
commite1cc88ccaf5fec2671c2f50bd850e7c56b03f286 (patch)
treecff63aa32560c63bf7d91a9d8745d1510a23be47
parentb676b73e391b10a4ec5fbd6a1a02054fb3d8aa4b (diff)
parenteb344a69fa728c010425fb1e18fc8f5774693986 (diff)
downloadframeworks_base-e1cc88ccaf5fec2671c2f50bd850e7c56b03f286.zip
frameworks_base-e1cc88ccaf5fec2671c2f50bd850e7c56b03f286.tar.gz
frameworks_base-e1cc88ccaf5fec2671c2f50bd850e7c56b03f286.tar.bz2
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.
-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 {