diff --git a/docs/ff-concepts/adding-customization/configuration-files.md b/docs/ff-concepts/adding-customization/configuration-files.md
index 752234d6..f8a2194c 100644
--- a/docs/ff-concepts/adding-customization/configuration-files.md
+++ b/docs/ff-concepts/adding-customization/configuration-files.md
@@ -41,10 +41,11 @@ FlutterFlow provides two main ways to modify native XML files: [**Add Individual
For Android, modifications are typically made in the `AndroidManifest.xml` file, where you can add the following tags:
-- **Activity Tags**: This injects code inside the ` ... ` block. You’d use this to declare an additional activity in an Android application. An activity represents a single screen with a user interface (UI). This tag can control the behavior, orientation, and themes, and determines how the activity interacts with other apps or system events.
-- **Application Tags**: This injects code inside the ` ... ` block. You’d use this to configure `` entries, application-wide settings, declare app components like services, broadcast receivers, and content providers, and specify intent filters.
+- **Activity Tags:** Inserts XML code inside the `MainActivity` block. This is typically used to add child XML elements within the MainActivity, such as `` or `` to control aspects such as deep linking, theme application, or launch mode.
+- **Application Tags**: Used to inject properties or attributes directly on the `` tag itself. For example, you can use this to set values such as `android:icon`, `android:label`, `android:allowBackup`.
+- **App Component Tags**: Inserts complete XML components inside the `...` block. Use this to add additional activities, services, broadcast receivers, or content providers that your app depends on.
-To add a snippet to your `AndroidManifest.xml`, navigate to **Custom Code** from the left navigation menu, select **Configuration Files**, then choose `AndroidManifest.xml`. Click the **plus** (+) button next to either the *Activity* or *Application* tag—depending on where you'd like to insert the snippet. Provide a name (this will be included as a comment in the file) and paste your snippet code.
+To add a snippet to your `AndroidManifest.xml`, navigate to **Custom Code** from the left navigation menu, select **Configuration Files**, then choose `AndroidManifest.xml`. Click the **plus (+)** button next to the tag where you want to insert the snippet. Provide a name (this will be included as a comment in the file) and paste your snippet code.