안녕하세요 안드로이드 초보입니다.

APP을 나갈때는 알람이 정상적으로 작동을 하는데
APP을 강제종료 했을 경우 알람이 죽는 것 같습니다. 그래서 검색해 본 결과
매니패스트 에다가 android:process=":remote" />추가하라고 해서 했는데두 안되네요..

manager = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
sender = PendingIntent.getBroadcast(MainActivity.this, notificationId, myIntent, 0);
long triggerTime =  System.currentTimeMillis() + 1000 * second;
manager.set(AlarmManager.RTC, triggerTime,   sender);

이런식으로 처리하고 있습니다.
요점은 APP을 강제 종료 하더라두 알람이 정상적으로 작동하게 하고 싶은데 어떻게 해야 할까여?
답변 부탁드릴게요 수고하세요