launch

fun launch(lifetime: Lifetime, context: CoroutineContext = EmptyCoroutineContext, start: CoroutineStart = CoroutineStart.DEFAULT, action: suspend CoroutineScope.() -> Unit): Job

Deprecated

Use coroutine scope built in lifetime

Replace with

import kotlinx.coroutines.launch
lifetime.coroutineScope.launch(context, start, action)