I am new to Android. Right now I'm just trying to give examples that include Services. In one example, a service is created as a separate background process. Using something like this
android:process=":background"
They said that now the service will have a separate process environment and, therefore, it is separate from the one that was running. When I killed the parent process ieApplication, the service is also killed. Is this normal behavior or not? Because what I understand from this article will not be affected by the Service, as it is a different process environment. Please correct me if I am wrong. thanks in advance
UPDATE: Even I saw the same behavior if I use: remote.
source share