Home > front end >  Is it possible for an Android process to do some work without any Android component (such as Activit
Is it possible for an Android process to do some work without any Android component (such as Activit

Time:03-21

Typically, processes aren't expected to do any work when cached, but some apps might have custom features supported by processes that are expected to run while cached.

This quote comes from Android Source Code Document . What is the custom features that can be running in cached processes. As I understand it, cached processes do not contain any running Android component, so does it mean that programs can be run without any component or cached processes may contain running components?

CodePudding user response:

I think so no because minimum one activity is required for run the android programme.

CodePudding user response:

Know more about android fundamentals and android activities https://developer.android.com/guide/components/fundamentals

  • Related