Back to project page dissertation-project.
The source code is released under:
MIT License
If you think the Android project dissertation-project 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.fyp.resilience.receiver; //from w w w . ja v a 2s . c o m import com.fyp.resilience.service.PieceUploadService; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class BootReceiver extends BroadcastReceiver { @Override public void onReceive(final Context context, final Intent intent) { context.startService(new Intent(context, PieceUploadService.class)); } }