When using an implicit intent, what process does the system use to know what to do with it?
When using an implicit intent, what process does the system use to know what to do with it?
When using an implicit intent, the system determines what to do with it through a process called Intent resolution. This process involves matching the Intent against the <intent-filter> descriptions specified in the manifest files of the installed applications, to find the appropriate Activity, BroadcastReceiver, or Service that can handle the Intent.
A. Intent resolution