Junior — Middle
Can you list other key components included in the Manifest structure besides Activity?
sobes.tech AI
Answer from AI
In AndroidManifest.xml, besides <activity> elements, other key components are often used, such as:
<service>— describes services that run in the background.<receiver>— for describing BroadcastReceivers that respond to system or user events.<provider>— for ContentProviders that provide access to application data.<application>— the root element containing general application settings.<intent-filter>— within components to define which intents they can handle.
These components together describe the structure and behavior of the application at the system level.