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:
@@ -135,6 +135,12 @@ class AIRHelper
|
|||||||
signingOptions.push("samplePassword");
|
signingOptions.push("samplePassword");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (project.config.exists("air.tsa"))
|
||||||
|
{
|
||||||
|
signingOptions.push("-tsa");
|
||||||
|
signingOptions.push(project.config.getString("air.tsa"));
|
||||||
|
}
|
||||||
|
|
||||||
var args = ["-package"];
|
var args = ["-package"];
|
||||||
|
|
||||||
// TODO: Is this an old workaround fixed in newer AIR SDK?
|
// TODO: Is this an old workaround fixed in newer AIR SDK?
|
||||||
|
|||||||
Reference in New Issue
Block a user