From cedd506a9c40d4f91e3ef5aef6bd45d2dc87186d Mon Sep 17 00:00:00 2001 From: David Britch Date: Tue, 11 Feb 2025 12:35:49 +0000 Subject: [PATCH] Fix typos. --- docs/android/manifest.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/android/manifest.md b/docs/android/manifest.md index cc6b56547..ad88ac44e 100644 --- a/docs/android/manifest.md +++ b/docs/android/manifest.md @@ -15,7 +15,7 @@ The manifest file for your .NET MAUI Android app is generated as part of the .NE ## Generating the manifest -All .NET MAUI app's have a `MainActivity` class that derives from , via the `MauiAppCompatActivity` class, and that has the applied to it. Some apps may include additional classes that derive from and that have the applied. +All .NET MAUI apps have a `MainActivity` class that derives from , via the `MauiAppCompatActivity` class, and that has the applied to it. Some apps may include additional classes that derive from and that have the applied. At build time, assemblies are scanned for non-`abstract` classes that derive from and that have the applied. These classes and attributes are used to generate the app's manifest. For example, consider the following code: @@ -158,7 +158,7 @@ This example produces the following XML fragment: The Android manifest file also provides a way for you to declare properties for your entire app. This is achieved via the `` element and its counterpart, the . Typically, you declare `` properties for your entire app and then override these properties as required on an activity basis. -For example, the following `Application` attribute could be added to *MainApplication.cs* to indicate that the app's user-readable name is "My Maui App", and that it uses the `Maui.SplashTheme` style as the default theme for all activities: +For example, the following `Application` attribute could be added to *MainApplication.cs* to indicate that the app's user-readable name is "My Maui App", and that it uses the `Maui.SplashTheme` style as the default theme for all activities: ```csharp using Android.App; @@ -197,7 +197,7 @@ The isn't the only way to configure `