Lines Matching refs:In
1 page.title=Preparing Your In-app Billing Application
2 parent.title=Selling In-app Products
6 next.title=Establishing In-app Billing Products for Sale
19 <li><a href="#AddLibrary">Add the In-app Billing Library</a></li>
26 <li><a href="{@docRoot}google/play/billing/billing_overview.html">In-app Billing
41 …In-app Billing service, you'll need to add the library that contains the In-app Billing Version 3 …
44 …In this training class, you will use a reference implementation for the In-app Billing Version 3 A…
64 <p>The Google Play Developer Console is where you publish your In-app Billing application and mana…
69 <li>In the <strong>All Applications</strong> tab, add a new application entry.
72 <li>Enter a name for your new In-app Billing application.</li>
76 <li>In the <strong>Services & APIs</strong> tab, find and make a note of the public license key tha…
80 <h2 id="AddLibrary">Add the In-app Billing Library</h2>
81 <p>To use the In-app Billing Version 3 features, you must add the {@code IInAppBillingService.aidl}…
82 …odifying an existing application, follow the instructions below to add the In-app Billing Library …
84 <p>To add the In-app Billing Version 3 library to your new In-app Billing project:</p>
87 <li>Modify the package name in the files you copied to use the package name for your project. In An…
89 <li>Fix import statements as needed so that your project compiles correctly. In Android Studio, yo…
94 <p>To add the In-app Billing Version 3 library to your existing In-app Billing project:</p>
98 <li>In Android Studio: Create a directory named {@code aidl} under {@code src/main}, add a new
101 …<li>In other dev environments: Create the following directory {@code /src/com/android/vending/bill…
107 <p>Your project should now contain the In-app Billing Version 3 library.</p>
116 …In-app Billing service to send In-app Billing requests to Google Play from your application. The c…
117 … an {@code IabHelper} instance in your activity's {@code onCreate} method. In the constructor, pas…
133 …on. As part of the setup process, the {@code IabHelper} also checks if the In-app Billing Version …
140 Log.d(TAG, "Problem setting up In-app Billing: " + result);
149 <p class="note"><strong>Important:</strong> Remember to unbind from the In-app Billing service when…