@Markchous Can you launch multiple instances of your application, of a Service and more? No. Neither can the Google Play Services, and that's the point of having it, to share resources, saving RAM
💯 1
👍 1
m
Markchous
08/21/2018, 11:29 PM
@louiscad That’s a good point. My gut feeling is that it’s a single instance, but they could easily spawn multiple processes if that’s the case
Markchous
08/21/2018, 11:31 PM
Although, my statement above is a long stretch and is highly unlikely.
l
louiscad
08/22/2018, 5:18 AM
In Android, apps are single process only by default, an the only way to have multiple process is to specify a process in the
AndroidManifest.xml
file for a component like a service or an activity. That means all the possible processes that can run (if any non default is declared) are known at install time.