제가 만든 어플에서 충전 잭에 연결 안되었지만
Intent intent = new Intent(Intent.ACTION_POWER_CONNECTED);sendBroadcast(intent);
이런식으로 강제적으로 브로드 케스트를 날리고 싶은데 퍼미션 에러가 납니다.
이에 관하여 정보가 있으신분은 좀 알려 주시면 감사 합니다.
ACTION_POWER_CONNECTED | ACTION_POWER_DISCONNECTED
This is a protected intent that can only be sent by the system.
메니페스트에 퍼미션을 추가하셔야 하는데, 윗분 말씀처럼 파워 연결은 시스템만 건들수 있어서 불가능 합니다.
로그인 유지
ACTION_POWER_CONNECTED | ACTION_POWER_DISCONNECTED
This is a protected intent that can only be sent by the system.