withProcessName

abstract fun withProcessName(name: String): AndroidServiceDeploymentConfigurator

Configures the name of the process that should host this Android service in.

The leading colon (:) means that the service host runs as a private process to the application. See service-element for details.

To run an Android service in the same process as another IVI service host, Android service or broadcast receiver, use inSameProcessAs. To run an Android service in the main process, use inMainProcess instead. inMainProcess may only be used for integration test projects.