Android Question HttpUtils in RDC, doesn't stop when App Exit

incendio

Well-Known Member
Licensed User
Longtime User
Hi guys,

I am testing RDC just to do some select query.

After running a query, when I pressed back button, the App exit/terminate, but when looking at Setting->Running App on the Android device, App still running, and the running process is httputils.

Open App without running query and then pressed back button, App completely terminate without any processes.

How to completely terminate App when exit without any other processes left even after running some query?
 

incendio

Well-Known Member
Licensed User
Longtime User
Apps are not destroyed when the user presses on the back key. Only the activity is destroyed. You should let Android kill the process when it decides to.
Thanks for you replied.

1) Without HttpUtils, App destroyed and also the process killed when back key pressed.
2) HttpUtils is not running as a cache process, but as a running app, it consume memory, don't know how much memory consume when running on a lots of query and in long time.

Any tips how to kill HttpUtils when app destroyed?
 
Upvote 0
Top