if Android service is running in its own process say "STACKPR", and this Service will starts a new activity, Will this activity is part of "STACKPR" process by default or its part of application process ?
I tried the below method, but it is starting in a application process.
// in on start
Intent sIntent = new Intent(this, BasicActivity.class);
sIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(sIntent);
If it is not part of Service process, How to starts a activity which runs in that Service process ?