I used BroadcastReceiver to start my application on boot, but it is not starting
here is my code
Manifest code :
Try starting an Activity as opposed to Service:-
Intent i = new Intent(context, MainActivity.class); i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(i);