Back to project page issue-parser.
The source code is released under:
GNU General Public License
If you think the Android project issue-parser 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 de.dom.drupalit.backgroundservice; import de.dom.drupalit.tabs.TabProfile; import android.app.AlarmManager; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.os.SystemClock; /*from ww w .j a v a2 s . co m*/ public class OnBootReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { TabProfile.registerAlarm(context); } }