Add some more Gradle warnings to sanitize

#android
#rb trivial



#ROBOMERGE-SOURCE: CL 5808669 via CL 5808671 via CL 5808672 via CL 5811662

[CL 5811900 by chris babcock in Main branch]
This commit is contained in:
chris babcock
2019-04-09 16:18:32 -04:00
parent 78ee213516
commit 5486ea99a2

View File

@@ -1410,7 +1410,17 @@ namespace UnrealBuildTool
{
if (e.Data != null)
{
// apply filtering of the warning we want to ignore
// apply filtering of the warnings we want to ignore
if (e.Data.Contains("WARNING: The option 'android.enableD8' is deprecated and should not be used anymore."))
{
Log.TraceInformation("{0}", e.Data.Replace("WARNING: ", ">> "));
return;
}
if (e.Data.Contains("WARNING: The specified Android SDK Build Tools version"))
{
Log.TraceInformation("{0}", e.Data.Replace("WARNING: ", ">> "));
return;
}
if (e.Data.Contains("Warning: Resigning with jarsigner."))
{
Log.TraceInformation("{0}", e.Data.Replace("Warning: ", ">> "));