stopServiceOnTaskRemoved

@JvmField
var stopServiceOnTaskRemoved: Boolean(source)

If TorService is running and your application is swiped from the recent app's tray (user removes the Task), this setting indicates the behavior of how you wish to react.

If true, all instances of TorRuntime will be destroyed and android.app.Service.stopService will be called. If false, no reaction will be had and the service will either be:

  • If operating as a background service, killed when the application process is killed.

  • If operating as a foreground service, keep your application alive until Action.StopDaemon is executed for all instances of TorRuntime operating within the service.

This can be useful if:

  • You are running TorService in the background alongside other services that are operating in the foreground which are keeping the application alive past Task removal.

  • You are running TorService in the foreground and wish to keep the application alive until Action.StopDaemon is executed.

Default: true