Skip to content

Commit 67a08df

Browse files
committed
Address review feedback.
1 parent 8635119 commit 67a08df

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/Xamarin.Android.Build.Tasks/Tasks/CollectAssemblyFilesForArchive.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace Xamarin.Android.Tasks;
1212

1313
/// <summary>
14-
/// Collects TypeMap to be added to the final archive.
14+
/// Collects managed assemblies to be added to the final archive.
1515
/// </summary>
1616
public class CollectAssemblyFilesForArchive : AndroidTask
1717
{

src/Xamarin.Android.Build.Tasks/Tasks/CollectNativeFilesForArchive.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
namespace Xamarin.Android.Tasks;
1616

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

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

0 commit comments

Comments
 (0)