fun startService()

in PoC/android/app/src/main/java/com/epam/crowdresitance/service/BtService.kt [39:45]


        fun startService(context: Context) {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                context.startForegroundService(getServiceIntent(context))
            } else {
                context.startService(getServiceIntent(context))
            }
        }