withProcessName

abstract fun withProcessName(name: String): BroadcastReceiverDeploymentConfigurator

Configures the name of the process that should host this broadcast receiver in.

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

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