I want to start my application when phone startup
I just follow tutorial from here but it doesn\'t work in my device. Please see my method:
public c
You are not calling the Service.
Code like this.
Intent objIntent= new Intent(context, MyService.class); context.startService(objIntent);
Click Here to know how to start service from broadcast receiver