Back to project page MrParkingNavigator.
The source code is released under:
MIT License
If you think the Android project MrParkingNavigator 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 ru.mail.parking.sw2.system; /*from ww w . j a va 2 s . co m*/ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class SwReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { context.startService(intent.setClass(context, SwService.class)); } }