Back to project page powerstats.
The source code is released under:
GNU General Public License
If you think the Android project powerstats 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.znasibov.powerstats; /*from ww w . j ava2s .c o m*/ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.util.Log; public class Autostart extends BroadcastReceiver { public void onReceive(Context context, Intent intent) { Intent blIntent = new Intent(context, PowerStatsLoggerService.class); context.startService(blIntent); Log.i("Autostart", "started"); } }