재부팅 자동실행1 Android 디바이스 기기 부팅 시 자동으로 앱이 실행되게 하기. 디바이스가 재부팅 할 때 자동으로 해당 앱이 실행되게 만들어보겠습니다. 우선 메니페스트에서 퍼미션하나 넣어줄게요. 그리고 브로드케스트 리시버를 상속받는 클래스 하나를 만들게요. import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class AutoStart extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if(action.equals("android.intent.action.B.. 2020. 5. 21. 이전 1 다음