Back to project page GitHubContributionsApp.
The source code is released under:
GNU General Public License
If you think the Android project GitHubContributionsApp 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.githubcardandroidapp.app.GitHubContributionsIO.Services; //from w ww.ja v a 2s. c o m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; /** * Created by Muhammad on 6/20/2014. */ public class DeviceStartupReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { if (intent.getAction() != null && intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) { Intent serviceIntent = new Intent(); serviceIntent.setAction("GitHubContributionsIO.GitHubSyncService"); context.startService(serviceIntent); } } }