Back to project page wifilogger.
The source code is released under:
MIT License
If you think the Android project wifilogger 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.pix4d.wifilogger.app; //from w w w. j ava 2 s . co m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class BootBroadcastReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Intent serviceIntent = new Intent(context, WifiLoggerService.class); context.startService(serviceIntent); } }