Back to project page android-power-button-fix.
The source code is released under:
GNU General Public License
If you think the Android project android-power-button-fix 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 it.glisco.powerbuttonbroken; //from www. ja va 2s. c o m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class BootCompletedReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Intent serviceIntent = new Intent(context, SensorService.class); context.startService(serviceIntent); } }