public class MyApplication extends Application{ public void onCreate(){ super.onCreate(); //add-begin Intent intent = new Intent(); intent.setComponent(new ComponentName(com.example.myservice, com.example.myservice.MyService)); startServiceAsUser(intent, UserHandle.OWNER); //end-add } }