Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
#nullable enable
using System;
using System.IO;
using System.Linq;
using System.Threading;
Expand All @@ -15,24 +16,19 @@ public class GetGdbSymbols : AndroidTask
{
public override string TaskPrefix => "GGDB";

public string AdbTarget { get; set; }
public string? AdbTarget { get; set; }

[Required]
public string GdbSymbolsPath { get; set;}
public string GdbSymbolsPath { get; set; } = "";

[Required]
public string Package { get; set; }
public string Package { get; set; } = "";

[Required]
public string OutputPath { get; set; }
public string OutputPath { get; set; } = "";

[Required]
public string PrimaryCpuAbi {get; set; }

public GetGdbSymbols ()
{
AdbTarget = null;
}
public string PrimaryCpuAbi { get; set; } = "";

public override bool RunTask ()
{
Expand Down Expand Up @@ -63,4 +59,3 @@ void ExtractFilesFromPath(string apk, string path)
}
}
}