Skip to content

Commit

Permalink
Address review feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpobst committed Dec 13, 2024
1 parent 8635119 commit 21d0b80
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Xamarin.Android.Tasks;

/// <summary>
/// Collects TypeMap to be added to the final archive.
/// Collects managed assemblies to be added to the final archive.
/// </summary>
public class CollectAssemblyFilesForArchive : AndroidTask
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@

namespace Xamarin.Android.Tasks;

/// <summary>
/// Collects native libraries to be added to the final archive.
/// </summary>
public class CollectNativeFilesForArchive : AndroidTask
{
const string ArchiveLibPath = "lib";
Expand Down Expand Up @@ -292,7 +295,7 @@ void AddNativeLibrary (ArchiveFileList files, string path, string abi, string? a
}

// This method is used only for internal warnings which will never be shown to the end user, therefore there's
// no need to use coded warnings.
// no need to use coded warnings. (They are only used when the internal property $(_AndroidCheckedBuild) is set to true.)
void LogSanitizerWarning (string message)
{
Log.LogWarning (message);
Expand Down

0 comments on commit 21d0b80

Please sign in to comment.