Back to project page Xbox360CollectorsPlace.
The source code is released under:
MIT License
If you think the Android project Xbox360CollectorsPlace listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.xboxcollectorsplace.bl.extension; // ww w .ja v a 2 s . co m import com.google.android.vending.expansion.downloader.DownloaderClientMarshaller; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager.NameNotFoundException; /** * Class not used, only for Google Play. Code from Google Developers. * Originally used to download the expansion file containing the covers */ public class XboxAlarmReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { try { DownloaderClientMarshaller.startDownloadServiceIfRequired(context, intent, XboxDownloaderService.class); } catch (NameNotFoundException e) { e.printStackTrace(); } } }