in PoC/android/app/src/main/java/com/epam/crowdresitance/service/BootReceiver.kt [26:34]
override fun onReceive(context: Context?, intent: Intent) {
if (Intent.ACTION_BOOT_COMPLETED == intent.action) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
JobService.enqueueWork(context, Intent())
} else {
context?.startService(getServiceIntent(context))
}
}
}