applicationLauncher

fun <A : Application> CoroutineScope.applicationLauncher(create: suspend () -> A): ApplicationLauncher<A>

通过一个协程作用域并提供构建函数来得到一个 ApplicationLauncher 实例。


fun <A : Application> applicationLauncher(context: CoroutineContext = EmptyCoroutineContext, create: suspend () -> A): ApplicationLauncher<A>

提供一个协程上下文并提供构建函数来得到一个 ApplicationLauncher 实例。