AIRHelper: add support for AIR adt -tsa option

Example:

<config:air tsa="http://timestamp.digicert.com"/>

Required to workaround "Could not generate timestamp: Connection reset" error from adt with default timestamp URL.
This commit is contained in:
Josh Tynjala
2024-10-17 09:18:03 -07:00
parent 7dc3718551
commit 0e974fd733

View File

@@ -135,6 +135,12 @@ class AIRHelper
signingOptions.push("samplePassword");
}
if (project.config.exists("air.tsa"))
{
signingOptions.push("-tsa");
signingOptions.push(project.config.getString("air.tsa"));
}
var args = ["-package"];
// TODO: Is this an old workaround fixed in newer AIR SDK?