Programming/android
안드로이드 앱 자동 실행 설정
구차니
2022. 3. 2. 13:35
RECEIVE_BOOT_COMPLETED Added in API level 1 public static final String RECEIVE_BOOT_COMPLETED Allows an application to receive the Intent.ACTION_BOOT_COMPLETED that is broadcast after the system finishes booting. If you don't request this permission, you will not receive the broadcast at that time. Though holding this permission does not have any security implications, it can have a negative impact on the user experience by increasing the amount of time it takes the system to start and allowing applications to have themselves running without the user being aware of them. As such, you must explicitly declare your use of this facility to make that visible to the user. Protection level: normal Constant Value: "android.permission.RECEIVE_BOOT_COMPLETED" |
[링크 : https://developer.android.com/reference/android/Manifest.permission#RECEIVE_BOOT_COMPLETED]