Android Question service starter opens after executing exitaplication

gregorio_adrian_gimenez

Active Member
Licensed User
Longtime User
Hi, my friends!
I am reviewing a very large code, for some reason when closing the app with the command: exitaplication, the starter service is activated again by itself. I made sure that I do not have any code in this service. What can be? Cheers
service starter opens after executing exitaplication


exitaplication
*** Service (starter) Create ***

regards
 

mangojack

Well-Known Member
Licensed User
Longtime User
There is quite a few threads covering this ...

one of many ...
do not use exitApplication, android will treat it as if the application has been suspended. Use activity.finish and let the system close the application. Do not fight it.
 
Upvote 0
Top