Home > Software design >  how to Terminate ruing app from a flutter app?
how to Terminate ruing app from a flutter app?

Time:06-19

I am trying to build a flutter app that terminate an app by my flutter app.I don't know how to do this can you give me some idea for this ?

CodePudding user response:

That is not possible using Flutter, and I can't even think you can do it natively, to terminate other apps you need OS privileges which you cannot get using Flutter

CodePudding user response:

Due to the architecture of the modern mobile operation systems, memory access to other spaces is limited. That means, that you can't control other processes than created by you (your app in this case), so there is no way you can close other app, unless you have administrator privileges on the device

  • Related