Hello friends, how are you?, I wanted to know how I can solve this problem about the itool extension.
I would like to create a function in the background but other than "CreateProcess", for me I believe that this "CreateTask" would not show the permanent notification.
However, the error is when I program to create a new task, it returns this error:
what exactly do you plan to do in the background?
of course noone likes that persistent notification...
read again post 1 from the itoo thread about the types of services
Types of Service
A service is basically something that runs also while the app is not open or when the app is closed.
Background Service: A non-visible background work that can be scheduled using Itoo.
Runs silently without user noticing it.
Vulnerable to being stopped by the system abruptly, can only run upto a few minutes in modern devices depending on the phone brand, OEM, OS installed, etc. (also see dontkillmyapp.com )
Foreground Service: A user visible and recommended way to execute something in the background.
Itoo is primarily based on supporting this service.
Generally can work non stop for ever, but could be limited to a few days or less time depending on the phone brand you use.
A permanent notification is shown while this service is active starting from Android 8 (Oreo).