There is an application. It has several services and one main wrapper that starts these services. If Runtime Exception occurs in the shell, the application crashes, but the services do not stop. I need to stop the services so that the next time I start the application, they will not be started.
I tried to use shutdownhook in Application:
val processPIDs = ArrayList<Int>()
Runtime.getRuntime().addShutdownHook(Thread {
processPIDs.forEach {
android.os.Process.killProcess(it)
}
})
But it doesn't work if Runtime Exception occurs.
I have a list of service pids and need to stop them after Exception. But Exception can happen anywhere in the program.
Is there anything that could help?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…