android - Broadcast Receiver life cycle -


broadcastreceiver registered inside manifest file. happens when app not running , broadcast received?

does android create new process handle broadcast?

does class extends broadcastreceiver created?

how whole process work?

does android create new process handle broadcast?

yes, if app not running , event have registered happens, android os handles situation creating new process. if register in code, it's tied life of activity/service registered in.

does class extends broadcastreceiver created?

the application singleton , contentprovider implementations have should created.

thank you, commonsware help.


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

android - Unable to generate FCM token from dynamically instantiated Firebase -