Lines Matching full:service
31 <li><a href="#DownloaderService">Implementing the downloader service</a></li>
219 href="{@docRoot}google/play/licensing/index.html">Application Licensing</a> service, which
230 greatly simplifies this process and performs the download from a service with a minimal amount of
263 href="{@docRoot}google/play/licensing/index.html">Application Licensing</a> service to request URLs
268 <p>If you build your own download service instead of using the library, be aware that you
337 href="{@docRoot}google/play/licensing/index.html">Application Licensing</a> service.</p>
369 href="{@docRoot}google/play/licensing/index.html">Application Licensing</a> service. It's primarily
373 expansion file functionality, the licensing service has been enhanced to provide a response
391 <li>File downloads should occur in a background service in order to avoid blocking the user
404 which requests the expansion file URLs through the licensing service, downloads the expansion files,
417 policy, which captures the expansion file names, sizes, and URLs from the licensing service..</p>
426 background service, shows a user notification with the download status, handles network
432 <li>Extend a special {@link android.app.Service} subclass and {@link
547 <h3 id="DownloaderService">Implementing the downloader service</h3>
550 own {@link android.app.Service} subclass called {@code DownloaderService} that you should extend. In
559 cases in which the service gets killed.</li>
585 restarted (which might happen if the downloader service unexpectedly stops).</dd>
621 <p>Remember to declare the service in your manifest file:</p>
624 <service android:name=".SampleDownloaderService" />
661 in your service's {@code getAlarmReceiverClassName()} method (see the previous section).</p>
721 {@code DownloaderService}, required to start the service and begin the download if necessary.</li>
754 // Start the download service (if required)
772 service such that your activity receives callbacks about the download progress.
785 // Start the download service (if required)
834 display the download progress and send requests to the service.</p>
842 of {@code DownloaderService}. To send requests to the service, such as to pause and resume
844 IDownloaderService} interface connected to the service.
857 downloader service, such as to pause and resume the download ({@code requestPauseDownload()}
861 <dd>The download service calls this when a change in download state occurs, such as the
871 <dd>The download service calls this to deliver a {@code DownloadProgressInfo} object,
903 <p>If you decide to build your own downloader service instead of using the Google Play