Back to project page LASA-Schedules.
The source code is released under:
GNU General Public License
If you think the Android project LASA-Schedules 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.asdar.lasaschedules; /*from www . j a v a 2s . co m*/ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; /** * Created by Ehsan on 4/20/2014. */ public class NotificationServiceReciever extends BroadcastReceiver { public void onReceive(Context c, Intent intent) { Intent service = new Intent(c, NotificationService.class); c.startService(service); } }